HomeSort by: relevance | last modified time | path
    Searched defs:min (Results 1 - 25 of 833) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/zstd/dist/contrib/pzstd/utils/
Portability.h 14 // Required for windows, which defines min/max, but we want the std:: version.
15 #undef min macro
  /src/sys/arch/vax/boot/boot/
vaxstand.h 44 #define min(x,y) (x < y ? x : y) macro
  /src/external/bsd/libfido2/dist/fuzz/
uniform_random.c 36 uint32_t r, min; local
42 min = -upper_bound % upper_bound;
52 if (r >= min)
  /src/external/bsd/unbound/dist/compat/
arc4random_uniform.c 36 uint32_t r, min; local
42 min = -upper_bound % upper_bound;
52 if (r >= min)
  /src/external/gpl2/lvm2/dist/include/
util.h 20 #define min(a, b) ({ typeof(a) _a = (a); \ macro
  /src/external/gpl2/lvm2/dist/lib/misc/
util.h 20 #define min(a, b) ({ typeof(a) _a = (a); \ macro
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
hash.h 46 #ifndef min
47 #define min(a,b) (((a)>(b))?(b):(a)) macro
  /src/sys/external/bsd/drm2/include/linux/
random.h 70 uint32_t v, min; local
72 min = (-bound) % bound;
75 } while (v < min);
  /src/usr.bin/m4/
stdd.h 42 #define min(a,b) ((a) < (b)? (a): (b)) macro
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
RandomNumberGenerator.h 46 static constexpr result_type min() { return generator_type::min(); } function in class:llvm::RandomNumberGenerator
  /src/sys/arch/mvme68k/stand/sboot/
clock.c 105 int sec, min, hour, day, mon, year; local
109 min = cl->cl_min;
115 return chiptotime(sec, min, hour, day, mon, year);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
boost.h 10 u32 min; member in struct:nvbios_boostE
23 u32 min; member in struct:nvbios_boostS
vmap.h 19 u32 min; member in struct:nvbios_vmap_entry
  /src/usr.bin/mklocale/
ldef.h 41 __nbrune_t min; member in struct:rune_list
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_s_mp_sub.c 24 int olduse, res, min, max; local
27 min = b->used;
50 for (i = 0; i < min; i++) {
  /src/external/historical/nawk/dist/testdir/
T.misc 247 function min(a, b) function
256 if test -r core; then echo 1>&2 "BAD: T.misc function min dropped core"; fi
  /src/external/mit/libuv/dist/test/
test-thread-priority.c 50 int min; local
69 min = 1;
72 min = sched_get_priority_min(policy);
75 ASSERT(priority >= min && priority <= max);
84 ASSERT_EQ(priority, min);
  /src/lib/libc/time/
tzselect.ksh 279 function min(x, y) { function
324 return abs(long1 - long2) * min(cos(lat1), cos(lat2))
  /src/lib/libform/
type_integer.c 48 long min; member in struct:__anon485
65 new->min = va_arg(*args, long);
105 long number, max, min; local
113 min = ((integer_args *) (void *) field->args)->min;
146 if ((min > max) || ((number < min) || (number > max)))
type_numeric.c 48 double min; member in struct:__anon486
65 new->min = va_arg(*args, double);
106 double number, max, min; local
114 min = ((numeric_args *) (void *) field->args)->min;
179 if ((min < max) && ((number < min) || (number > max)))
  /src/lib/npf/ext_rndblock/
npfext_rndblock.c 65 signed long min; member in struct:param
88 if (ival < params[i].min || ival > params[i].max) {
  /src/regress/sys/kern/latency1/
latency1.c 57 long min = LONG_MAX; variable
84 if (val < min)
85 min = val;
141 printf("\nmin %ldns, max=%ldns\n", min, max);
  /src/sys/arch/landisk/stand/boot/
getsecs.c 196 uint32_t sec, min, hour, day; local
204 min = rtc_read(RS5C313_MIN1);
205 min += rtc_read(RS5C313_MIN10) * 10;
218 secs += min * 60;
  /src/sys/arch/x68k/stand/libsa/
clock.c 48 int sec, min, hour, day, mon, year; local
59 min = ((val & 0x0000ff00) >> 8);
65 if (hour > 23 || min > 59 || sec > 59)
77 + (min * SECS_PER_MINUTE) + sec + (rtc_offset * 60);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.h 78 template <class T> constexpr T &min(T &A, T &B) { return A <= B ? A : B; } function in namespace:__xray
81 return max(A, B) - min(A, B);

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>