Searched refs:best (Results 26 - 50 of 82) sorted by relevance

1234

/freebsd-10.1-release/usr.bin/patch/
H A Dpch.c1518 char *best = NULL; local
1523 * The "best" name is the one with the fewest number of path
1540 best = path;
1546 best = path;
1551 best = path;
1553 return best;
1557 * Choose the name of the file to be patched based the "best" one
1563 char *best; local
1565 best = compare_names(names, assume_exists, 1);
1566 if (best
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dsymtab.c747 such best match symbol. This can help in cases
786 struct partial_symbol *best = NULL, *p, **pp;
820 best = p;
844 best = p;
848 return best;
1370 searching the static block here seems best: it's correct and it's
1878 /* Info on best line seen so far, and where it starts, and its file. */
1880 struct linetable_entry *best = NULL;
1892 /* Info on best line seen in this file. */
2004 /* Find the best lin
783 struct partial_symbol *best = NULL, *p, **pp; local
1875 struct linetable_entry *best = NULL; local
2156 int best; local
2288 int best = 0; local
[all...]
H A Dmacrotab.c503 struct macro_source_file *best = NULL;
515 if (! best || result_depth < best_depth)
517 best = result;
523 return best;
499 struct macro_source_file *best = NULL; local
/freebsd-10.1-release/sys/boot/common/
H A Dmodule.c542 struct kernel_module *mp, *best; local
553 best = NULL;
565 best = mp;
570 return (best);
714 u_char *cp, *recptr, *bufend, *best; local
728 best = cp = NULL;
752 best = cp;
766 else if (best)
767 result = file_lookup(mdp->d_path, best, blen, NULL);
H A Dpart.c761 struct pentry *entry, *best; local
767 best = NULL;
808 best = entry;
811 if (best != NULL) {
812 memcpy(part, &best->part, sizeof(*part));
/freebsd-10.1-release/sys/boot/ficl/
H A Ddict.c488 double best; local
521 /* Calc best possible performance with this size hash */
525 best = (double)nDepth/nWords;
532 best,
533 100.0 * best / avg);
/freebsd-10.1-release/sys/dev/sound/pcm/
H A Dfeeder.c351 u_int32_t best, score, score2, oldscore; local
360 best = 0;
385 best = fmts[i];
390 return best;
/freebsd-10.1-release/contrib/diff/src/
H A Danalyze.c184 lin best = 0; local
194 if (v > best
198 /* We have a good enough best diagonal;
205 best = v;
213 if (best > 0)
220 best = 0;
229 if (v > best
233 /* We have a good enough best diagonal;
240 best = v;
248 if (best >
[all...]
/freebsd-10.1-release/contrib/openpam/
H A Dmkpkgng.in135 OpenPAM aims to gather the best features of Solaris PAM, XSSO and
/freebsd-10.1-release/contrib/texinfo/util/
H A Dtexindex.c1579 struct linebuffer *best = 0;
1589 (!best ||
1590 0 < compare_general (best->buffer, thisline[i]->buffer,
1593 best = thisline[i];
1603 best->buffer, 0L, 1L, num_keyfields - 1)))
1604 indexify (best->buffer, ostream);
1605 prev_out = best;
1567 struct linebuffer *best = 0; local
/freebsd-10.1-release/sys/kern/
H A Dsched_4bsd.c1232 int best, cpu; local
1237 best = td->td_lastcpu;
1239 best = NOCPU;
1244 if (best == NOCPU)
1245 best = cpu;
1246 else if (runq_length[cpu] < runq_length[best])
1247 best = cpu;
1249 KASSERT(best != NOCPU, ("no valid CPUs"));
1251 return (best);
H A Dkern_linker.c341 * metadata then we have to try the best we can.
881 c_linker_sym_t best, es; local
884 best = 0;
891 best = es;
897 if (best) {
898 *sym = best;
1713 * version specification is available, then try to find the best KLD.
1725 u_char *cp, *recptr, *bufend, *result, *best, *pathbuf, *sep; local
1747 best = cp = NULL;
1805 best
[all...]
H A Dkern_cpu.c439 * driver, getting the current setting. Then, attempt to get a best
864 int best, count, diff, bdiff, devcount, error, freq, i, n; local
896 best = 0;
902 best = i;
905 error = CPUFREQ_SET(devs[n], &levels[best], CPUFREQ_PRIO_USER);
/freebsd-10.1-release/contrib/gcc/
H A Dregclass.c889 /* Return the reg_class in which pseudo reg number REGNO is best allocated.
1229 /* Normally we scan the insns once and determine the best class to use for
1231 twice, the second time using the tentative best classes to guide the
1289 enum reg_class best = ALL_REGS, alt = NO_REGS;
1317 best = (enum reg_class) class;
1320 best = reg_class_subunion[(int) best][class];
1325 best = NO_REGS;
1350 if (alt == best)
1354 && (reg_pref[i].prefclass != (int) best
1284 enum reg_class best = ALL_REGS, alt = NO_REGS; local
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_import.c37 * examined every device, we pick the best label txg config for each toplevel
133 name_entry_t *ne, *best; local
163 best = NULL;
170 best = ne;
185 if (count > matched || best == NULL) {
186 best = ne;
192 if (best == NULL)
195 if (nvlist_add_string(nv, ZPOOL_CONFIG_PATH, best->ne_name) != 0)
198 if ((devid = get_devid(best->ne_name)) == NULL) {
428 * start by picking the best confi
[all...]
/freebsd-10.1-release/sys/geom/multipath/
H A Dg_multipath.c171 struct g_consumer *best, *cp; local
177 best = NULL;
182 if (best == NULL || cp->private < best->private ||
183 (cp->private == best->private && cp->index > best->index))
184 best = cp;
186 if (best != NULL)
187 best->index &= ~MP_IDLE_MASK;
188 return (best);
[all...]
/freebsd-10.1-release/contrib/gcc/cp/
H A Dmethod.c921 tree best = NULL_TREE;
966 if (!best || (excess_p && !excess))
968 best = fn;
975 return best;
919 tree best = NULL_TREE; local
/freebsd-10.1-release/sys/geom/raid/
H A Dtr_raid1.c178 * Choose the best disk we have to make it active.
498 struct g_raid_subdisk *sd, *best; local
501 best = NULL;
524 best = sd;
528 return (best);
H A Dmd_sii.c712 struct g_raid_disk *disk, *best; local
780 best = NULL;
792 best = disk;
796 if (best != NULL)
797 g_raid_md_sii_start_disk(best);
798 } while (best != NULL);
/freebsd-10.1-release/sys/x86/x86/
H A Dlocal_apic.c1270 int retval, best; local
1280 /* Probe all the enumerators to find the best match. */
1282 best = 0;
1287 if (best_enum == NULL || best < retval) {
1289 best = retval;
/freebsd-10.1-release/contrib/bmake/mk/
H A Dmeta.sys.mk126 # it works best if we do everything via sub-makes
/freebsd-10.1-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h614 extern int CompressionHeaderUnpack(u_int8_t *best, int *code, int *reference, int *length, int *major, int *minor);
622 extern int ar9300_compression_header_unpack(u_int8_t *best, int *code, int *reference, int *length, int *major, int *minor);
/freebsd-10.1-release/sys/dev/isp/
H A DHardware.txt72 Especially with revision 2 or higher f/w, this is now best
295 I would call this the best configuration available now. It can expand
/freebsd-10.1-release/sys/dev/usb/controller/
H A Dohci.c1757 uint16_t best; local
1761 best = 0;
1766 best = bit;
1769 sc->sc_intr_stat[best]) {
1770 best = x;
1779 sc->sc_intr_stat[best]++;
1780 xfer->qh_pos = best;
1782 DPRINTFN(3, "best=%d interval=%d\n",
1783 best, xfer->interval);
H A Duhci.c2020 uint16_t best; local
2024 best = 0;
2029 best = bit;
2032 sc->sc_intr_stat[best]) {
2033 best = x;
2042 sc->sc_intr_stat[best]++;
2043 xfer->qh_pos = best;
2045 DPRINTFN(3, "best=%d interval=%d\n",
2046 best, xfer->interval);

Completed in 263 milliseconds

1234