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

1234567891011>>

/netbsd-6-1-5-RELEASE/dist/ipf/lib/
H A Dicmpcode.c15 #ifndef MIN
16 # define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/other/
H A Dvrp1.C3 // This caused a crash in VRP because TREE_OVERFLOW was set for MIN.
5 template<long long MIN>
8 if (l == MIN && r == -1)
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dgenfileioh.awk52 MIN=$1;
53 sub("^minor=", "", MIN);
65 printf("#define CURSES_LIB_MINOR %s\n", MIN);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dminmax-1.c4 /* Check that MIN-MAX and MAX-MIN combinations are folded. */
8 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
13 return MIN (MAX (a, b), b); /* == b */
18 return MAX (MIN (a, b), b); /* == b */
23 return MIN (MAX (b, a), b); /* == b */
28 return MAX (MIN (b, a), b); /* == b */
34 return MIN (a, MAX (a, b)); /* == a */
39 return MAX (a, MIN (a, b)); /* == a */
44 return MIN (
[all...]
H A Dc99-stdint-1.c39 #define SIGNED_MIN_MAX_COND(TYPE, MIN, MAX) \
40 ((MIN) == -(MAX)-1 \
43 #define MIN_MAX_COND(TYPE, MIN, MAX) \
45 ? SIGNED_MIN_MAX_COND(TYPE, (MIN), (MAX)) \
46 : ((MIN) == 0 && UNSIGNED_MAX_COND(TYPE, (MAX))))
47 #define CHECK_SIGNED_LIMITS(TYPE, MIN, MAX) \
49 CHECK_EXPR_TYPE(TYPE, (MIN)); \
51 do { int a[SIGNED_MIN_MAX_COND(TYPE, (MIN), (MAX)) ? 1 : -1]; } while (0)
52 #define CHECK_SIGNED_LIMITS_2(TYPE, MIN, MAX, MINBD, MAXBD) \
54 CHECK_EXPR_TYPE(TYPE, (MIN)); \
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
29 If more than one of these system headers define MIN and MAX, pick just
37 /* Note: MIN and MAX should be used with two arguments of the
55 /* MIN(a,b) returns the minimum of A and B. */
56 #ifndef MIN
57 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20080506-1.c4 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
17 u = MIN ((unsigned int) MAX (i, 0), (unsigned int) i);
H A D20031011-1.c4 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) macro
23 end_bit = MIN (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
26 end_bit = MIN (rl_bitpos + rl_bitsize, ll_bitpos + ll_bitsize);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/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;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_mul.c28 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
34 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
49 MIN(a->used, b->used) <=
H A Dbn_mp_get_int.c31 i = MIN(a->used,(int)((sizeof(unsigned long)*CHAR_BIT+DIGIT_BIT-1)/DIGIT_BIT))-1;
H A Dbn_fast_s_mp_mul_digs.c50 pa = MIN(digs, a->used + b->used);
60 ty = MIN(b->used-1, ix);
70 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c55 ty = MIN(a->used-1, ix);
65 iy = MIN(a->used-tx, ty+1);
71 iy = MIN(iy, (ty-tx+1)>>1);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20031011-1.c4 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) macro
23 end_bit = MIN (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
26 end_bit = MIN (rl_bitpos + rl_bitsize, ll_bitpos + ll_bitsize);
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dminmax.h0 /* MIN, MAX macros.
21 /* Note: MIN, MAX are also defined in <sys/param.h> on some systems
23 MIN, MAX macro redefinitions on some systems; the workaround is to
30 /* Note: MIN and MAX should preferrably be used with two arguments of the
56 /* MIN(a,b) returns the minimum of A and B. */
57 #ifndef MIN
59 # define MIN(a,b) (__extension__ \ macro
65 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/arlib/
H A Darplib.h45 #ifndef MIN
46 #define MIN(a,b) ((a) > (b) ? (b) : (a)) macro
/netbsd-6-1-5-RELEASE/external/bsd/pkg_install/dist/lib/
H A Ddefs.h48 #ifndef MIN
49 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
/netbsd-6-1-5-RELEASE/games/phantasia/
H A Dmacros.h12 #undef MIN macro
13 #define MIN(A, B) ((A) < (B) ? (A) : (B)) macro
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/
H A Drandbui.c39 _gmp_rand (a, rstate, MIN (bits, BITS_PER_ULONG));
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpf/
H A Dtrunc.c51 asize = MIN (asize, exp);
57 asize = MIN (asize, prec);
H A Deq.c79 usize = MIN (usize, n_limbs);
80 vsize = MIN (vsize, n_limbs);
90 minsize = MIN (usize, vsize);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/printf/
H A Dprintffuns.c59 memset (buf, c, MIN (reps, sizeof (buf)));
62 piece = MIN (i, sizeof (buf));
/netbsd-6-1-5-RELEASE/usr.sbin/user/
H A Ddefs.h51 #ifndef MIN
52 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
/netbsd-6-1-5-RELEASE/usr.sbin/timed/timed/
H A Dtspname.c51 size = MIN(size, sizeof(tsp->tsp_name));
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dcmpbuf.c76 #undef MIN macro
77 #define MIN(a, b) ((a) <= (b) ? (a) : (b)) macro
94 size_t bytes_to_read = MIN (buflim - bp, readlim);

Completed in 191 milliseconds

1234567891011>>