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

1234567891011>>

/freebsd-10.0-release/contrib/compiler-rt/lib/
H A Dnegvdi2.c24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1); local
25 if (a == MIN)
H A Dnegvsi2.c24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1); local
25 if (a == MIN)
H A Dnegvti2.c26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1); local
27 if (a == MIN)
H A Dmulodi4.c25 const di_int MIN = (di_int)1 << (N-1); local
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
H A Dmulosi4.c25 const si_int MIN = (si_int)1 << (N-1); local
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
H A Dmuloti4.c27 const ti_int MIN = (ti_int)1 << (N-1); local
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
H A Dmulvdi3.c25 const di_int MIN = (di_int)1 << (N-1); local
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
H A Dmulvsi3.c25 const si_int MIN = (si_int)1 << (N-1); local
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
H A Dmulvti3.c27 const ti_int MIN = (ti_int)1 << (N-1); local
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dicmpcode.c15 #ifndef MIN
16 # define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/freebsd-10.0-release/contrib/ofed/management/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-10.0-release/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-10.0-release/contrib/ntp/arlib/
H A Darplib.h43 #ifndef MIN
44 #define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/freebsd-10.0-release/lib/libthread_db/arch/powerpc/
H A Dlibpthread_md.c41 memcpy(mc->mc_frame, r, MIN(sizeof(mc->mc_frame), sizeof(*r)));
49 memcpy(r, mc->mc_frame, MIN(sizeof(mc->mc_frame), sizeof(*r)));
57 memcpy(mc->mc_fpreg, r, MIN(sizeof(mc->mc_fpreg), sizeof(*r)));
67 memcpy(r, mc->mc_fpreg, MIN(sizeof(mc->mc_fpreg), sizeof(*r)));
/freebsd-10.0-release/lib/libthread_db/arch/sparc64/
H A Dlibpthread_md.c43 memcpy(&uc->uc_mcontext, r, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
50 memcpy(r, &uc->uc_mcontext, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
58 memcpy(mc->mc_fp, r->fr_regs, MIN(sizeof(mc->mc_fp),
71 memcpy(r->fr_regs, mc->mc_fp, MIN(sizeof(mc->mc_fp),
/freebsd-10.0-release/sys/dev/bwi/
H A Dbitops.h72 ((__BIT(MAX((__m), (__n)) + 1) - 1) ^ (__BIT(MIN((__m), (__n))) - 1))
/freebsd-10.0-release/sys/dev/sym/
H A Dsym_conf.h98 #define SYM_CONF_MAX_SG (MIN(33, (MAXPHYS / PAGE_SIZE) + 1))
/freebsd-10.0-release/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-10.0-release/contrib/tcpdump/
H A Dprint-zeromq.c111 u_int64_t body_len_printed = MIN(body_len_captured, body_len_declared);
124 body_len_printed = MIN(VBYTES + 1, body_len_printed);
142 const u_char *ep = MIN(snapend, cp + len);
/freebsd-10.0-release/contrib/gcc/
H A Drtlhooks.c80 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
81 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
156 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
157 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
/freebsd-10.0-release/libexec/rbootd/
H A Drmp.h48 * Define MIN/MAX sizes of RMP (ethernet) packet.
54 #define RMP_MAX_PACKET MIN(1514,MCLBYTES)
/freebsd-10.0-release/bin/pax/
H A Dpax.h232 #ifndef MIN
233 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_sorts.h41 /* Define a MIN macro if we don't already have one */
42 #ifndef MIN
43 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
/freebsd-10.0-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_uio.c61 cnt = MIN(iov->iov_len, n);
99 register size_t niovb = MIN(iovp->iov_len, n);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzle.c49 while (src < MIN(last, s_end) && src[0] == 0)
56 while (src < MIN(last, s_end) - 1 && (src[0] | src[1]))

Completed in 220 milliseconds

1234567891011>>