Home
last modified time | relevance | path

Searched refs:best (Results 1 – 25 of 421) sorted by relevance

12345678910>>...17

/linux-6.3-rc2/arch/x86/kvm/
A Dcpuid.h112 struct kvm_cpuid_entry2 *best; in guest_cpuid_is_amd_or_hygon() local
115 return best && in guest_cpuid_is_amd_or_hygon()
116 (is_guest_vendor_amd(best->ebx, best->ecx, best->edx) || in guest_cpuid_is_amd_or_hygon()
117 is_guest_vendor_hygon(best->ebx, best->ecx, best->edx)); in guest_cpuid_is_amd_or_hygon()
122 struct kvm_cpuid_entry2 *best; in guest_cpuid_is_intel() local
125 return best && is_guest_vendor_intel(best->ebx, best->ecx, best->edx); in guest_cpuid_is_intel()
133 if (!best) in guest_cpuid_family()
136 return x86_family(best->eax); in guest_cpuid_family()
144 if (!best) in guest_cpuid_model()
147 return x86_model(best->eax); in guest_cpuid_model()
[all …]
A Dcpuid.c139 if (best) { in kvm_check_cpuid()
151 if (!best) in kvm_check_cpuid()
154 xfeatures = best->eax | ((u64)best->edx << 32); in kvm_check_cpuid()
239 if (best) in kvm_update_pv_runtime()
252 if (!best) in cpuid_get_supported_xcr0()
265 if (best) { in __kvm_update_cpuid_runtime()
281 if (best) in __kvm_update_cpuid_runtime()
296 if (best) in __kvm_update_cpuid_runtime()
311 if (best) { in __kvm_update_cpuid_runtime()
386 if (!best || best->eax < 0x80000008) in cpuid_query_maxphyaddr()
[all …]
/linux-6.3-rc2/lib/raid6/
A Dalgos.c128 if (!best || (*algo)->priority > best->priority) in raid6_choose_recov()
130 best = *algo; in raid6_choose_recov()
132 if (best) { in raid6_choose_recov()
140 return best; in raid6_choose_recov()
152 if (!best || (*algo)->priority >= best->priority) { in raid6_choose_gen()
157 best = *algo; in raid6_choose_gen()
176 best = *algo; in raid6_choose_gen()
184 if (!best) { in raid6_choose_gen()
193 best->name); in raid6_choose_gen()
198 best->name, in raid6_choose_gen()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
A Dshadow.c180 }, *mthd, *best = NULL; in nvbios_shadow() local
193 best = mthd; in nvbios_shadow()
200 if (!best && (best = mthd)) { in nvbios_shadow()
206 if (!best->score) { in nvbios_shadow()
214 if (!best || !best->score) { in nvbios_shadow()
219 best = mthd; in nvbios_shadow()
227 if (mthd != best) in nvbios_shadow()
231 if (!best->score) { in nvbios_shadow()
237 best->func->name : source); in nvbios_shadow()
238 bios->data = best->data; in nvbios_shadow()
[all …]
/linux-6.3-rc2/drivers/usb/core/
A Dgeneric.c61 struct usb_host_config *c, *best; in usb_choose_configuration() local
66 best = NULL; in usb_choose_configuration()
130 best = c; in usb_choose_configuration()
136 best = c; in usb_choose_configuration()
156 best = c; in usb_choose_configuration()
168 best = c; in usb_choose_configuration()
174 else if (!best) in usb_choose_configuration()
175 best = c; in usb_choose_configuration()
183 if (best) { in usb_choose_configuration()
184 i = best->desc.bConfigurationValue; in usb_choose_configuration()
/linux-6.3-rc2/include/linux/
A Dcpufreq.h821 best = idx; in cpufreq_table_find_index_al()
824 return best; in cpufreq_table_find_index_al()
844 best = idx; in cpufreq_table_find_index_dl()
852 return best; in cpufreq_table_find_index_dl()
855 return best; in cpufreq_table_find_index_dl()
890 best = idx; in cpufreq_table_find_index_ah()
901 return best; in cpufreq_table_find_index_ah()
920 best = idx; in cpufreq_table_find_index_dh()
923 return best; in cpufreq_table_find_index_dh()
973 return best; in cpufreq_table_find_index_ac()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/
A Ddrm_vma_manager.c144 struct drm_mm_node *node, *best; in drm_vma_offset_lookup_locked() local
149 best = NULL; in drm_vma_offset_lookup_locked()
156 best = node; in drm_vma_offset_lookup_locked()
165 if (best) { in drm_vma_offset_lookup_locked()
166 offset = best->start + best->size; in drm_vma_offset_lookup_locked()
168 best = NULL; in drm_vma_offset_lookup_locked()
171 if (!best) in drm_vma_offset_lookup_locked()
174 return container_of(best, struct drm_vma_offset_node, vm_node); in drm_vma_offset_lookup_locked()
/linux-6.3-rc2/sound/pci/emu10k1/
A Demu10k1_callback.c83 struct best_voice best[V_END]; in snd_emu10k1_synth_get_voice() local
90 if (best[i].voice >= 0) { in snd_emu10k1_synth_get_voice()
218 best[i].voice = -1; in lookup_voices()
234 bp = best + V_FREE; in lookup_voices()
236 bp = best + V_OFF; in lookup_voices()
240 bp = best + V_RELEASED; in lookup_voices()
244 bp = best + V_OFF; in lookup_voices()
250 bp = best + V_PLAYING; in lookup_voices()
255 if (bp != best + V_OFF && bp != best + V_FREE && in lookup_voices()
259 bp = best + V_OFF; in lookup_voices()
[all …]
/linux-6.3-rc2/fs/jffs2/
A Dcompr.c35 struct jffs2_compressor *best, uint32_t size, uint32_t bestsize) in jffs2_is_best_compression() argument
45 if ((best->compr != JFFS2_COMPR_LZO) && (bestsize > size)) in jffs2_is_best_compression()
154 struct jffs2_compressor *this, *best=NULL; in jffs2_compress() local
214 best = this; in jffs2_compress()
221 output_buf = best->compr_buf; in jffs2_compress()
222 best->compr_buf = NULL; in jffs2_compress()
223 best->compr_buf_size = 0; in jffs2_compress()
224 best->stat_compr_blocks++; in jffs2_compress()
225 best->stat_compr_orig_size += best_slen; in jffs2_compress()
226 best->stat_compr_new_size += best_dlen; in jffs2_compress()
[all …]
/linux-6.3-rc2/drivers/video/fbdev/core/
A Dmodedb.c771 best = -1; in fb_find_mode()
791 best = i; in fb_find_mode()
801 best = -1; in fb_find_mode()
818 best = i; in fb_find_mode()
979 return best; in fb_find_best_mode()
1021 return best; in fb_find_nearest_mode()
1172 best = md; in fb_find_best_display()
1185 best = m; in fb_find_best_display()
1192 best = md; in fb_find_best_display()
1197 best = m1; in fb_find_best_display()
[all …]
/linux-6.3-rc2/drivers/md/
A Ddm-ps-queue-length.c194 struct path_info *pi = NULL, *best = NULL; in ql_select_path() local
203 if (!best || in ql_select_path()
204 (atomic_read(&pi->qlen) < atomic_read(&best->qlen))) in ql_select_path()
205 best = pi; in ql_select_path()
207 if (!atomic_read(&best->qlen)) in ql_select_path()
211 if (!best) in ql_select_path()
215 list_move_tail(&best->list, &s->valid_paths); in ql_select_path()
217 ret = best->path; in ql_select_path()
A Ddm-ps-service-time.c280 struct path_info *pi = NULL, *best = NULL; in st_select_path() local
289 if (!best || (st_compare_load(pi, best, nr_bytes) < 0)) in st_select_path()
290 best = pi; in st_select_path()
292 if (!best) in st_select_path()
296 list_move_tail(&best->list, &s->valid_paths); in st_select_path()
298 ret = best->path; in st_select_path()
/linux-6.3-rc2/drivers/net/bonding/
A Dbond_3ad.c1599 if (!best) in ad_agg_selection_test()
1704 best = ad_agg_selection_test(best, agg); in ad_agg_selection_logic()
1707 if (best && in ad_agg_selection_logic()
1727 if (best && (best == active)) { in ad_agg_selection_logic()
1735 best->slave ? best->slave->dev->name : "NULL", in ad_agg_selection_logic()
1739 best->is_individual, best->is_active); in ad_agg_selection_logic()
1741 best->slave ? best->slave->dev->name : "NULL", in ad_agg_selection_logic()
1742 best->lag_ports, best->slave); in ad_agg_selection_logic()
1761 best->slave ? best->slave->dev->name : "NULL", in ad_agg_selection_logic()
1764 best->slave ? best->slave->dev->name : "NULL", in ad_agg_selection_logic()
[all …]
/linux-6.3-rc2/drivers/acpi/numa/
A Dhmat.c542 if (!*best || *best > value) { in hmat_update_best()
543 *best = value; in hmat_update_best()
550 if (!*best || *best < value) { in hmat_update_best()
551 *best = value; in hmat_update_best()
591 u32 best = 0; in hmat_register_target_initiators() local
631 best = 0; in hmat_register_target_initiators()
645 if (best) in hmat_register_target_initiators()
647 best, 0); in hmat_register_target_initiators()
666 best = 0; in hmat_register_target_initiators()
680 if (value != best) in hmat_register_target_initiators()
[all …]
/linux-6.3-rc2/net/dccp/
A Dqpolicy.c38 struct sk_buff *skb, *best = NULL; in qpolicy_prio_best_skb() local
41 if (best == NULL || skb->priority > best->priority) in qpolicy_prio_best_skb()
42 best = skb; in qpolicy_prio_best_skb()
43 return best; in qpolicy_prio_best_skb()
/linux-6.3-rc2/sound/isa/sb/
A Demu8000_callback.c156 struct best { in get_voice() struct
159 } best[END]; in get_voice() local
160 struct best *bp; in get_voice()
166 best[i].voice = -1; in get_voice()
179 bp = best + OFF; in get_voice()
182 bp = best + RELEASED; in get_voice()
185 bp = best + OFF; in get_voice()
188 bp = best + PLAYING; in get_voice()
197 bp = best + OFF; in get_voice()
207 if (best[i].voice >= 0) { in get_voice()
[all …]
/linux-6.3-rc2/arch/sh/kernel/
A Dunwinder.c68 struct unwinder *best; in select_unwinder() local
73 best = list_entry(unwinder_list.next, struct unwinder, list); in select_unwinder()
74 if (best == curr_unwinder) in select_unwinder()
77 return best; in select_unwinder()
/linux-6.3-rc2/drivers/clk/rockchip/
A Dclk-half-divider.c14 unsigned long best, unsigned long flags) in _is_best_half_div() argument
17 return abs(rate - now) < abs(rate - best); in _is_best_half_div()
19 return now <= rate && now > best; in _is_best_half_div()
40 unsigned long parent_rate, best = 0, now, maxdiv; in clk_half_divider_bestdiv() local
80 if (_is_best_half_div(rate, now, best, flags)) { in clk_half_divider_bestdiv()
82 best = now; in clk_half_divider_bestdiv()
/linux-6.3-rc2/sound/soc/codecs/
A Dwm9081.c1054 best = 0; in wm9081_hw_params()
1061 best = i; in wm9081_hw_params()
1066 clk_sys_rates[best].ratio); in wm9081_hw_params()
1071 best = 0; in wm9081_hw_params()
1077 best = i; in wm9081_hw_params()
1082 sample_rates[best].rate); in wm9081_hw_params()
1087 best = 0; in wm9081_hw_params()
1095 best = i; in wm9081_hw_params()
1102 aif3 |= bclk_divs[best].bclk_div; in wm9081_hw_params()
1114 best = 0; in wm9081_hw_params()
[all …]
A Dwm8731.c71 int val, i, best; in wm8731_set_deemph() local
77 best = 1; in wm8731_set_deemph()
80 abs(wm8731_deemph[best] - wm8731->playback_fs)) in wm8731_set_deemph()
81 best = i; in wm8731_set_deemph()
84 val = best << 1; in wm8731_set_deemph()
86 best = 0; in wm8731_set_deemph()
91 best, wm8731_deemph[best]); in wm8731_set_deemph()
A Dwm8904.c429 best = 0; in wm8904_set_retune_mobile()
436 best = i; in wm8904_set_retune_mobile()
493 int val, i, best; in wm8904_set_deemph() local
499 best = 1; in wm8904_set_deemph()
503 best = i; in wm8904_set_deemph()
1342 best = 0; in wm8904_hw_params()
1349 best = i; in wm8904_hw_params()
1359 best = 0; in wm8904_hw_params()
1365 best = i; in wm8904_hw_params()
1379 best = 0; in wm8904_hw_params()
[all …]
/linux-6.3-rc2/drivers/crypto/qat/qat_common/
A Dqat_crypto.c55 unsigned long best = ~0; in qat_crypto_get_instance_node() local
65 if (best > ctr) { in qat_crypto_get_instance_node()
67 best = ctr; in qat_crypto_get_instance_node()
87 best = ~0; in qat_crypto_get_instance_node()
92 if (best > ctr) { in qat_crypto_get_instance_node()
94 best = ctr; in qat_crypto_get_instance_node()
A Dqat_compression.c53 unsigned long best = ~0; in qat_compression_get_instance_node() local
67 if (best > ctr) { in qat_compression_get_instance_node()
69 best = ctr; in qat_compression_get_instance_node()
92 best = ~0; in qat_compression_get_instance_node()
99 if (best > ctr) { in qat_compression_get_instance_node()
101 best = ctr; in qat_compression_get_instance_node()
/linux-6.3-rc2/drivers/clk/versatile/
A Dicst.c51 unsigned int i = 0, rd, best = (unsigned int)-1; in icst_hz_to_vco() local
90 if ((unsigned)f_diff < best) { in icst_hz_to_vco()
95 best = f_diff; in icst_hz_to_vco()
/linux-6.3-rc2/drivers/clk/meson/
A Dclk-pll.c121 unsigned long best, in meson_clk_pll_is_better() argument
127 if (abs(now - rate) < abs(best - rate)) in meson_clk_pll_is_better()
131 if (now <= rate && best < now) in meson_clk_pll_is_better()
220 unsigned long best = 0, now = 0; in meson_clk_get_pll_settings() local
231 if (meson_clk_pll_is_better(rate, best, now, pll)) { in meson_clk_get_pll_settings()
232 best = now; in meson_clk_get_pll_settings()
241 return best ? 0 : -EINVAL; in meson_clk_get_pll_settings()

Completed in 53 milliseconds

12345678910>>...17