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

1 2 3 4 5 6 7 8

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
negvdi2.c 24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvsi2.c 24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvti2.c 26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
mulodi4.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
mulosi4.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
muloti4.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
mulvdi3.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvsi3.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvti3.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
  /src/external/bsd/ipf/dist/lib/
icmpcode.c 15 #ifndef MIN
16 # define MIN(a,b) ((a) > (b) ? (b) : (a))
  /src/external/bsd/pkg_install/dist/lib/
defs.h 51 #ifndef MIN
52 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
minmax.h 0 /* 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))
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
minmax.h 0 /* 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))
  /src/external/gpl2/xcvs/dist/lib/
minmax.h 0 /* 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))
  /src/external/gpl3/gdb/dist/gnulib/import/
minmax.h 0 /* 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))
  /src/external/gpl3/gdb.old/dist/gnulib/import/
minmax.h 0 /* 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))
  /src/external/gpl3/binutils/dist/gprofng/src/
gp-gmon.h 14 #ifndef MIN
15 #define MIN(a,b) ((a) < (b) ? (a) : (b))
  /src/tests/usr.bin/xlint/lint1/
msg_048.c 19 /* expect+1: warning: enumeration value 'MIN' overflows [48] */
20 MIN,
  /src/usr.sbin/user/
defs.h 51 #ifndef MIN
52 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  /src/external/bsd/zstd/dist/tests/
loremOut.c 24 #define MIN(a, b) ((a) < (b) ? (a) : (b))
30 size_t genBlockSize = (size_t)MIN(size, LOREM_BLOCKSIZE);
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
int128_builtins.cpp 24 const __int128_t MIN = (__int128_t)1 << (N - 1);
25 const __int128_t MAX = ~MIN;
28 if (a == MIN) {
33 if (b == MIN) {
48 if (abs_a > MIN / -abs_b)
  /src/external/bsd/zstd/dist/tests/fuzz/
fuzz_helpers.h 31 #define MIN(a, b) ((a) < (b) ? (a) : (b))
  /src/games/phantasia/
macros.h 12 #undef MIN
13 #define MIN(A, B) ((A) < (B) ? (A) : (B))
  /src/lib/libc/stdio/
fvwrite.c 86 #define MIN(a, b) ((a) < (b) ? (a) : (b))
107 w = (*fp->_write)(fp->_cookie, p, MIN(len, INT_MAX));
152 COPY(w); /* copy MIN(fp->_w,len), */
172 w = MIN(w * (len / w), INT_MAX);
192 * that the amount to write is MIN(len,nldist).
203 s = (int)MIN(len, nldist);
  /src/share/examples/pud/intro/
intro.c 39 #ifndef MIN
40 #define MIN(a,b) ((a)<(b)?(a):(b))
103 clen = MIN(strlen(curstr), pc_read->pm_resid);

Completed in 53 milliseconds

1 2 3 4 5 6 7 8