Home
last modified time | relevance | path

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

12345678910>>...13

/linux/lib/raid6/
H A Dalgos.c137 const struct raid6_recov_calls *best; in raid6_choose_recov() local
139 for (best = NULL, algo = raid6_recov_algos; *algo; algo++) in raid6_choose_recov()
140 if (!best || (*algo)->priority > best->priority) in raid6_choose_recov()
142 best = *algo; in raid6_choose_recov()
144 if (best) { in raid6_choose_recov()
145 raid6_2data_recov = best->data2; in raid6_choose_recov()
146 raid6_datap_recov = best->datap; in raid6_choose_recov()
148 pr_info("raid6: using %s recovery algorithm\n", best->name); in raid6_choose_recov()
152 return best; in raid6_choose_recov()
161 const struct raid6_calls *best; in raid6_choose_gen() local
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dshadow.c186 }, *mthd, *best = NULL; in nvbios_shadow() local
199 best = mthd; in nvbios_shadow()
206 if (!best && (best = mthd)) { in nvbios_shadow()
212 if (!best->score) { in nvbios_shadow()
220 if (!best || !best->score) { in nvbios_shadow()
221 for (mthd = mthds, best = mthd; mthd->func; mthd++) { in nvbios_shadow()
222 if (!mthd->skip || best->score < mthd->skip) { in nvbios_shadow()
224 if (mthd->score > best->score) in nvbios_shadow()
225 best = mthd; in nvbios_shadow()
233 if (mthd != best) in nvbios_shadow()
[all …]
/linux/sound/pci/emu10k1/
H A Demu10k1_callback.c27 struct best_voice *best, int active_only);
84 struct best_voice best[V_END]; in snd_emu10k1_synth_get_voice() local
89 lookup_voices(emu, hw, best, 1); /* no OFF voices */ in snd_emu10k1_synth_get_voice()
91 if (best[i].voice >= 0) { in snd_emu10k1_synth_get_voice()
93 vp = &emu->voices[best[i].voice]; in snd_emu10k1_synth_get_voice()
211 struct best_voice *best, int active_only) in lookup_voices() argument
218 best[i].time = (unsigned int)-1; /* XXX MAX_?INT really */ in lookup_voices()
219 best[i].voice = -1; in lookup_voices()
235 bp = best + V_FREE; in lookup_voices()
237 bp = best + V_OFF; in lookup_voices()
[all …]
/linux/arch/x86/kvm/
H A Dcpuid.h140 struct kvm_cpuid_entry2 *best; in guest_cpuid_family() local
142 best = kvm_find_cpuid_entry(vcpu, 0x1); in guest_cpuid_family()
143 if (!best) in guest_cpuid_family()
146 return x86_family(best->eax); in guest_cpuid_family()
151 struct kvm_cpuid_entry2 *best; in guest_cpuid_model() local
153 best = kvm_find_cpuid_entry(vcpu, 0x1); in guest_cpuid_model()
154 if (!best) in guest_cpuid_model()
157 return x86_model(best->eax); in guest_cpuid_model()
167 struct kvm_cpuid_entry2 *best; in guest_cpuid_stepping() local
169 best = kvm_find_cpuid_entry(vcpu, 0x1); in guest_cpuid_stepping()
[all …]
/linux/include/linux/
H A Dcpufreq.h807 int idx, best = -1; in cpufreq_table_find_index_al() local
815 best = idx; in cpufreq_table_find_index_al()
818 return best; in cpufreq_table_find_index_al()
829 int idx, best = -1; in cpufreq_table_find_index_dl() local
838 best = idx; in cpufreq_table_find_index_dl()
843 if (best == -1) in cpufreq_table_find_index_dl()
846 return best; in cpufreq_table_find_index_dl()
849 return best; in cpufreq_table_find_index_dl()
883 int idx, best = -1; in cpufreq_table_find_index_ah() local
892 best = idx; in cpufreq_table_find_index_ah()
[all …]
/linux/fs/jffs2/
H 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
210 if (((!best_dlen) || jffs2_is_best_compression(this, best, *cdatalen, best_dlen)) in jffs2_compress()
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()
[all …]
/linux/drivers/md/
H 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()
H 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()
H A Ddm-ps-historical-service-time.c434 struct path_info *pi = NULL, *best = NULL; in hst_select_path() local
444 if (!best || (hst_compare(pi, best, time_now, ps) < 0)) in hst_select_path()
445 best = pi; in hst_select_path()
448 if (!best) in hst_select_path()
452 list_move_tail(&best->list, &s->valid_paths); in hst_select_path()
454 ret = best->path; in hst_select_path()
/linux/sound/isa/sb/
H A Demu8000_callback.c156 struct best { in get_voice() struct
159 } best[END]; in get_voice() local
160 struct best *bp; in get_voice()
165 best[i].time = (unsigned int)(-1); /* XXX MAX_?INT really */ 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()
[all …]
/linux/net/dccp/
H A Dqpolicy.c
/linux/arch/sh/kernel/
H 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/drivers/clk/sophgo/
H A Dclk-sg2042-pll.c252 static int sg2042_get_pll_ctl_setting(struct sg2042_pll_ctrl *best, in sg2042_get_pll_ctl_setting() argument
272 memset(best, 0, sizeof(struct sg2042_pll_ctrl)); in sg2042_get_pll_ctl_setting()
305 if (abs_diff(foutpostdiv, req_rate) < abs_diff(best->freq, req_rate)) { in sg2042_get_pll_ctl_setting()
306 best->freq = foutpostdiv; in sg2042_get_pll_ctl_setting()
307 best->refdiv = refdiv; in sg2042_get_pll_ctl_setting()
308 best->fbdiv = fbdiv; in sg2042_get_pll_ctl_setting()
309 best->postdiv1 = postdiv1; in sg2042_get_pll_ctl_setting()
310 best->postdiv2 = postdiv2; in sg2042_get_pll_ctl_setting()
318 if (best->freq == 0) in sg2042_get_pll_ctl_setting()
/linux/drivers/clk/rockchip/
H 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/drivers/crypto/intel/qat/qat_common/
H 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()
/linux/sound/soc/codecs/
H 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()
H A Dak4641.c73 int i, best = 0; in ak4641_set_deemph() local
79 abs(deemph_settings[best] - ak4641->playback_fs)) in ak4641_set_deemph()
80 best = i; in ak4641_set_deemph()
83 best = i; in ak4641_set_deemph()
86 dev_dbg(component->dev, "Set deemphasis %d\n", best); in ak4641_set_deemph()
88 return snd_soc_component_update_bits(component, AK4641_DAC, 0x3, best); in ak4641_set_deemph()
/linux/drivers/clk/versatile/
H 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/drivers/acpi/numa/
H A Dhmat.c683 static bool hmat_update_best(u8 type, u32 value, u32 *best) in hmat_update_best() argument
694 if (!*best || *best > value) { in hmat_update_best()
695 *best = value; in hmat_update_best()
702 if (!*best || *best < value) { in hmat_update_best()
703 *best = value; in hmat_update_best()
743 u32 best = 0; in hmat_update_target_attrs() local
785 best = 0; in hmat_update_target_attrs()
799 if (hmat_update_best(loc->hmat_loc->data_type, value, &best)) in hmat_update_target_attrs()
801 if (value != best) in hmat_update_target_attrs()
804 if (best) in hmat_update_target_attrs()
[all …]
/linux/drivers/leds/
H A Dleds-tca6507.c399 int best = -1;/* full-on */ in led_prepare() local
411 best = i; in led_prepare()
417 best = i; in led_prepare()
420 if (best == -1) { in led_prepare()
427 if (!tca->bank[best].level_use) in led_prepare()
428 set_level(tca, best, level); in led_prepare()
430 tca->bank[best].level_use++; in led_prepare()
431 led->bank = best; in led_prepare()
432 set_select(tca, led->num, bank_source[best]); in led_prepare()
433 led->led_cdev.brightness = TO_BRIGHT(tca->bank[best].level); in led_prepare()
/linux/drivers/clk/
H A Dclk-multiplier.c57 unsigned long best, unsigned long flags) in __is_best_rate() argument
60 return abs(rate - new) < abs(rate - best); in __is_best_rate()
62 return new >= rate && new < best; in __is_best_rate()
/linux/drivers/video/fbdev/via/
H A Dviamode.c343 const struct fb_videomode *best = NULL; in get_best_mode() local
350 if (!best || abs(modes[i].refresh - refresh) < in get_best_mode()
351 abs(best->refresh - refresh)) in get_best_mode()
352 best = &modes[i]; in get_best_mode()
355 return best; in get_best_mode()
/linux/drivers/clk/qcom/
H A Dclk-regmap-mux-div.c82 static inline bool is_better_rate(unsigned long req, unsigned long best, in is_better_rate() argument
85 return (req <= new && new < best) || (best < req && best < new); in is_better_rate()
/linux/drivers/base/
H A Dmap.c99 unsigned long best = ~0UL; in kobj_lookup() local
110 if (p->range - 1 >= best) in kobj_lookup()
117 best = p->range - 1; in kobj_lookup()
/linux/tools/testing/selftests/bpf/map_tests/
H A Dlpm_trie_map_basic_ops.c102 struct tlpm_node *best = NULL; in tlpm_match() local
119 if (!best || i > best->n_bits) in tlpm_match()
120 best = list; in tlpm_match()
124 return best; in tlpm_match()
131 struct tlpm_node *best = tlpm_match(list, key, n_bits); in tlpm_delete() local
134 if (!best || best->n_bits != n_bits) in tlpm_delete()
137 if (best == list) { in tlpm_delete()
138 node = best->next; in tlpm_delete()
139 free(best); in tlpm_delete()
144 if (node->next == best) { in tlpm_delete()
[all …]

12345678910>>...13