Searched refs:lowest (Results 1 - 14 of 14) sorted by relevance

/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_randomid.c53 uint32_t lowest, n, diff; local
59 lowest = UINT32_MAX;
67 if (diff <= lowest) {
68 if (lowest != UINT32_MAX)
72 "lowest %"PRIu32"\n",
73 id, last[id], n, diff, lowest);
79 lowest = diff;
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Darc_os.c81 int64_t lowest = INT64_MAX; local
89 if (n < lowest) {
90 lowest = n;
105 if (n < lowest) {
106 lowest = n;
110 DTRACE_PROBE1(arc__available_memory, int64_t, lowest);
111 return (lowest);
/freebsd-current/contrib/llvm-project/libcxx/include/__random/
H A Dclamp_to_integral.h49 } else if (__r <= _Lim::lowest()) {
/freebsd-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Darc_os.c462 int64_t lowest = INT64_MAX; local
466 lowest = -1024;
468 return (lowest);
/freebsd-current/sys/dev/pci/
H A Dpci_iov.c433 * Set the ARI_EN bit in the lowest-numbered PCI function with the SR-IOV
434 * capability. This bit is only writeable on the lowest-numbered PF but
440 device_t lowest; local
456 lowest = NULL;
460 if (lowest == NULL || dev_func < lowest_func) {
461 lowest = devlist[i];
473 KASSERT(lowest != NULL,
477 iov_ctl = pci_read_config(lowest, lowest_pos + PCIR_SRIOV_CTL, 2);
479 pci_write_config(lowest, lowest_pos + PCIR_SRIOV_CTL, iov_ctl, 2);
480 if ((pci_read_config(lowest, lowest_po
[all...]
/freebsd-current/share/mk/
H A Dhost-target.mk59 # tr is insanely non-portable, accommodate the lowest common denominator
/freebsd-current/contrib/bmake/mk/
H A Dhost-target.mk73 # tr is insanely non-portable, accommodate the lowest common denominator
/freebsd-current/sys/contrib/zstd/programs/
H A Dbenchzstd.c514 { size_t const lowest = (u>5) ? 5 : u; local
517 for (n=lowest; n>0; n--)
524 for (n=lowest; n>0; n--)
/freebsd-current/contrib/sendmail/src/
H A Dconf.c5363 ** lowest -- first fd to close
5371 sm_closefrom(lowest, highest)
5372 int lowest, highest;
5375 closefrom(lowest);
5379 for (i = lowest; i < highest; i++)
5389 ** lowest -- first fd to arrange to be closed
5397 closefd_walk(lowest, fd)
5398 void *lowest;
5401 if (fd >= *(int *)lowest)
5410 ** lowest
[all...]
H A Dsendmail.h3002 extern void sm_closefrom __P((int lowest, int highest));
3003 extern void sm_close_on_exec __P((int lowest, int highest));
/freebsd-current/contrib/llvm-project/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h236 // Returns a floating point value in the range [Type's lowest, Type's max] by
240 return ConsumeFloatingPointInRange<T>(std::numeric_limits<T>::lowest(),
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc559 // POSIX requires that _POSIX_ARG_MAX is 4096, which is the lowest possible
/freebsd-current/sys/kern/
H A Dkern_cpu.c139 SYSCTL_INT(_debug_cpufreq, OID_AUTO, lowest, CTLFLAG_RWTUN, &cf_lowest_freq, 1,
793 * create derived states from the lowest absolute settings first
/freebsd-current/contrib/llvm-project/libcxx/include/__chrono/
H A Dduration.h123 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR _Rep min() _NOEXCEPT { return numeric_limits<_Rep>::lowest(); }

Completed in 160 milliseconds