| /src/external/bsd/pkg_install/dist/lib/ |
| defs.h | 55 #ifndef MAX 56 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| minmax.h | 1 /* 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 43 MAX (-1, 2147483648) returns 4294967295. 44 MAX (9007199254740992.0, 9007199254740993) returns 9007199254740992.0. 45 MAX (NaN, 0.0) returns 0.0. 46 MAX (+0.0, -0.0) returns -0.0. 50 /* MAX(a,b) returns the maximum of A and B. * [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| minmax.h | 1 /* 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 43 MAX (-1, 2147483648) returns 4294967295. 44 MAX (9007199254740992.0, 9007199254740993) returns 9007199254740992.0. 45 MAX (NaN, 0.0) returns 0.0. 46 MAX (+0.0, -0.0) returns -0.0. 50 /* MAX(a,b) returns the maximum of A and B. * [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| minmax.h | 1 /* 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 43 MAX (-1, 2147483648) returns 4294967295. 44 MAX (9007199254740992.0, 9007199254740993) returns 9007199254740992.0. 45 MAX (NaN, 0.0) returns 0.0. 46 MAX (+0.0, -0.0) returns -0.0. 50 /* MAX(a,b) returns the maximum of A and B. * [all...] |
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| minmax.h | 1 /* 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 43 MAX (-1, 2147483648) returns 4294967295. 44 MAX (9007199254740992.0, 9007199254740993) returns 9007199254740992.0. 45 MAX (NaN, 0.0) returns 0.0. 46 MAX (+0.0, -0.0) returns -0.0. 50 /* MAX(a,b) returns the maximum of A and B. * [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| minmax.h | 1 /* 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 43 MAX (-1, 2147483648) returns 4294967295. 44 MAX (9007199254740992.0, 9007199254740993) returns 9007199254740992.0. 45 MAX (NaN, 0.0) returns 0.0. 46 MAX (+0.0, -0.0) returns -0.0. 50 /* MAX(a,b) returns the maximum of A and B. * [all...] |
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| gp-gmon.h | 17 #ifndef MAX 18 #define MAX(a,b) ((a) > (b) ? (a) : (b))
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_048.c | 18 MAX,
|
| /src/usr.sbin/user/ |
| defs.h | 55 #ifndef MAX 56 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| mulodi4.c | 26 const di_int MAX = ~MIN; 49 if (abs_a > MAX / abs_b)
|
| mulosi4.c | 26 const si_int MAX = ~MIN; 49 if (abs_a > MAX / abs_b)
|
| muloti4.c | 28 const ti_int MAX = ~MIN; 51 if (abs_a > MAX / abs_b)
|
| mulvdi3.c | 26 const di_int MAX = ~MIN; 47 if (abs_a > MAX / abs_b)
|
| mulvsi3.c | 26 const si_int MAX = ~MIN; 47 if (abs_a > MAX / abs_b)
|
| mulvti3.c | 28 const ti_int MAX = ~MIN; 49 if (abs_a > MAX / abs_b)
|
| /src/external/apache2/llvm/dist/libcxx/src/filesystem/ |
| int128_builtins.cpp | 25 const __int128_t MAX = ~MIN; 45 if (abs_a > MAX / abs_b)
|
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| fuzz_helpers.h | 32 #define MAX(a, b) ((a) > (b) ? (a) : (b))
|
| /src/games/phantasia/ |
| macros.h | 10 #undef MAX 11 #define MAX(A, B) ((A) > (B) ? (A) : (B))
|
| /src/external/gpl3/binutils/dist/libctf/ |
| ctf-decls.h | 70 #undef MAX 72 #define MAX(a, b) ((a) > (b) ? (a) : (b))
|
| /src/external/gpl3/binutils.old/dist/libctf/ |
| ctf-decls.h | 70 #undef MAX 72 #define MAX(a, b) ((a) > (b) ? (a) : (b))
|
| /src/external/gpl3/gcc/dist/libbacktrace/ |
| stest.c | 45 #define MAX 10 50 int input[MAX]; 51 int output[MAX]; 117 int a[MAX];
|
| /src/external/gpl3/gcc.old/dist/libbacktrace/ |
| stest.c | 45 #define MAX 10 50 int input[MAX]; 51 int output[MAX]; 117 int a[MAX];
|
| /src/external/gpl3/gdb/dist/libbacktrace/ |
| stest.c | 45 #define MAX 10 50 int input[MAX]; 51 int output[MAX]; 117 int a[MAX];
|
| /src/external/gpl3/gdb.old/dist/libbacktrace/ |
| stest.c | 45 #define MAX 10 50 int input[MAX]; 51 int output[MAX]; 117 int a[MAX];
|
| /src/external/gpl3/gdb.old/dist/libctf/ |
| ctf-decls.h | 70 #undef MAX 72 #define MAX(a, b) ((a) > (b) ? (a) : (b))
|