Searched refs:MIN (Results 1 - 25 of 884) sorted by relevance

1234567891011>>

/freebsd-current/sbin/ipf/libipf/
H A Dicmpcode.c14 #ifndef MIN
15 # define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dnegvdi2.c20 const di_int MIN = local
22 if (a == MIN)
H A Dnegvsi2.c20 const si_int MIN = local
22 if (a == MIN)
H A Dnegvti2.c22 const ti_int MIN = (tu_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT) - 1); local
23 if (a == MIN)
/freebsd-current/usr.bin/dpv/
H A Ddpv_util.h53 #undef MIN macro
54 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Dint128_builtins.cpp24 const __int128_t MIN = (__int128_t)1 << (N - 1); local
25 const __int128_t MAX = ~MIN;
28 if (a == MIN) {
33 if (b == MIN) {
48 if (abs_a > MIN / -abs_b)
/freebsd-current/contrib/ofed/opensm/include/complib/
H A Dcl_math.h76 * MIN, ROUNDUP
81 /****d* Component Library: Math/MIN
83 * MIN
86 * The MIN macro returns the greater of two values.
89 * MIN( x, y );
104 #ifndef MIN
105 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
/freebsd-current/contrib/ntp/scripts/monitoring/
H A Dtimelocal.pl35 $MIN = 60 * $SEC;
36 $HR = 60 * $MIN;
46 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS;
54 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS
55 + $tzmin * $MIN - 60 * 60 * ($_[8] != 0);
75 $guess -= $g[0] * $SEC + $g[1] * $MIN + $g[2] * $HR + $g[3] * $DAYS;
/freebsd-current/lib/libthread_db/arch/powerpc/
H A Dlibpthread_md.c40 memcpy(mc->mc_frame, r, MIN(sizeof(mc->mc_frame), sizeof(*r)));
48 memcpy(r, mc->mc_frame, MIN(sizeof(mc->mc_frame), sizeof(*r)));
56 memcpy(mc->mc_fpreg, r, MIN(sizeof(mc->mc_fpreg), sizeof(*r)));
66 memcpy(r, mc->mc_fpreg, MIN(sizeof(mc->mc_fpreg), sizeof(*r)));
/freebsd-current/sys/dev/bwi/
H A Dbitops.h73 ((__BIT(MAX((__m), (__n)) + 1) - 1) ^ (__BIT(MIN((__m), (__n))) - 1))
/freebsd-current/sys/dev/sym/
H A Dsym_conf.h99 #define SYM_CONF_MAX_SG (MIN(33, (128 * 1024 / PAGE_SIZE) + 1))
/freebsd-current/contrib/bmake/
H A Ddirname.c55 #ifndef MIN
56 # define MIN(a, b) ((a < b) ? a : b) macro
98 buflen = MIN(len, buflen - 1);
/freebsd-current/contrib/diff/lib/
H A Dcmpbuf.c74 #undef MIN macro
75 #define MIN(a, b) ((a) <= (b) ? (a) : (b)) macro
92 size_t bytes_to_read = MIN (buflim - bp, readlim);
/freebsd-current/tests/sys/sys/
H A Dsplay_test.c55 #define MIN 5 macro
72 tmp->key = arc4random_uniform(MAX-MIN);
73 tmp->key += MIN;
H A Darb_test.c57 #define MIN 5 macro
76 tmp->key = arc4random_uniform(MAX-MIN);
77 tmp->key += MIN;
/freebsd-current/contrib/libdiff/lib/
H A Ddiff_internal.h21 #ifndef MIN
22 #define MIN(A,B) ((A)<(B)?(A):(B)) macro
41 .start = MIN(a->start, b->start),
/freebsd-current/lib/libnetbsd/sys/
H A Dcdefs.h82 ((__BIT(MAX((__m), (__n)) + 1) - 1) ^ (__BIT(MIN((__m), (__n))) - 1))
/freebsd-current/usr.sbin/fstyp/
H A Dcd9660.c56 strlcpy(label, volume, MIN(size, VOLUME_LEN));
H A Dmsdosfs.c102 copysize = MIN(size - 1, sizeof(pfat_bsbpb->BS_VolLab));
121 copysize = MIN(size - 1,
168 copysize = MIN(size - 1,
/freebsd-current/libexec/rbootd/
H A Drmp.h44 * Define MIN/MAX sizes of RMP (ethernet) packet.
50 #define RMP_MAX_PACKET MIN(1514,MCLBYTES)
/freebsd-current/lib/libc/gen/
H A Dgetloadavg.c59 nelem = MIN(nelem, sizeof(loadinfo.ldavg) / sizeof(fixpt_t));
/freebsd-current/stand/libsa/geli/
H A Dgeliboot.h42 #ifndef MIN
43 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
/freebsd-current/bin/pax/
H A Dpax.h231 #ifndef MIN
232 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/freebsd-current/sys/net80211/
H A Dieee80211_vht.c368 val = MIN(val1, val2);
384 val = MIN(val1, val2);
395 val = MIN(val1, val2);
405 val = MIN(val1, val2);
415 val = MIN(val1, val2);
441 val = MIN(val1, val2);
455 val = MIN(val1, val2);
485 val = MIN(val1, val2);
496 val = MIN(val1, val2);
507 val = MIN(val
[all...]
/freebsd-current/usr.sbin/bhyve/
H A Diov.c48 size_t toseek = MIN(left, iov1[i].iov_len);
88 size_t toseek = MIN(length - done, iov[i].iov_len);
136 len = MIN(iov[i].iov_len, buflen - off);

Completed in 206 milliseconds

1234567891011>>