/external/clang/test/Analysis/ |
index-type.c | 5 #define UINT_MAX (~0u) 9 #define X86_ARRAY_SIZE (UINT_MAX/2 + 4) 13 char *ptr = arr + UINT_MAX/2; 24 char *ptr = arr + UINT_MAX/2;
|
additive-folding.cpp | 5 #define UINT_MAX (~0U) 6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) 44 if (a == UINT_MAX) { 46 clang_analyzer_eval(a-1 == UINT_MAX-1); // expected-warning{{TRUE}} 49 clang_analyzer_eval(a-1 != UINT_MAX-1); // expected-warning{{TRUE}} 75 if (a >= UINT_MAX) 76 clang_analyzer_eval(a == UINT_MAX); // expected-warning{{TRUE}} 78 clang_analyzer_eval(a != UINT_MAX); // expected-warning{{TRUE}} 82 if (a < UINT_MAX) [all...] |
additive-folding-range-constraints.c | 5 #define UINT_MAX (~0U) 6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) 15 clang_analyzer_eval(a < UINT_MAX-1); // expected-warning{{TRUE}} 17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} 22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} 24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}} 29 clang_analyzer_eval(a == 0 || a == UINT_MAX); // expected-warning{{TRUE} [all...] |
/external/mesa3d/src/gallium/drivers/radeonsi/ |
si_state_binning.c | 58 for (i = 0; subtable[i].start != UINT_MAX; i++) { 101 { UINT_MAX, 0, 0 }, 110 { UINT_MAX, 0, 0 }, 118 { UINT_MAX, 0, 0 }, 130 { UINT_MAX, 0, 0 }, 139 { UINT_MAX, 0, 0 }, 149 { UINT_MAX, 0, 0 }, 162 { UINT_MAX, 0, 0 }, 173 { UINT_MAX, 0, 0 }, 184 { UINT_MAX, 0, 0 } [all...] |
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/ |
limits.h | 57 #define UINT_MAX __UINT_MAX /* max value for an unsigned int */ 83 #define GID_MAX UINT_MAX /* max value for a gid_t */ 84 #define UID_MAX UINT_MAX /* max value for a uid_t */
|
/external/e2fsprogs/intl/ |
gmo.h | 46 /* If UINT_MAX isn't defined, assume it's a 32-bit type. 51 #ifndef UINT_MAX 52 # define UINT_MAX UINT_MAX_32_BITS 55 #if UINT_MAX == UINT_MAX_32_BITS
|
/bionic/libc/include/ |
limits.h | 82 #define UINT_MAX 0xffffffffU /* max value for an unsigned int */ 117 # define UID_MAX UINT_MAX /* max value for a uid_t */ 118 # define GID_MAX UINT_MAX /* max value for a gid_t */ 122 #define SIZE_T_MAX UINT_MAX
|
/external/arm-optimized-routines/test/rtest/ |
types.h | 13 #if UINT_MAX == 4294967295
|
/bionic/tests/ |
limits_test.cpp | 70 #if !defined(UINT_MAX) 71 #error UINT_MAX
|
/external/libcxx/test/std/depr/depr.c.headers/ |
limits_h.pass.cpp | 62 #ifndef UINT_MAX 63 #error UINT_MAX not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
climits.pass.cpp | 62 #ifndef UINT_MAX 63 #error UINT_MAX not defined
|
/external/ltp/testcases/kernel/syscalls/alarm/ |
alarm02.c | 6 * 1) alarm() return UINT_MAX if seconds is UINT_MAX. 7 * 2) alarm() return UINT_MAX/2 if seconds is UINT_MAX/2. 8 * 3) alarm() return UINT_MAX/4 if seconds is UINT_MAX/4. 25 {"UINT_MAX/2", UINT_MAX/2}, 26 {"UINT_MAX/4", UINT_MAX/4} [all...] |
/external/clang/test/Headers/ |
limits.cpp | 15 _Static_assert(INT_MAX == UINT_MAX/2, ""); 25 _Static_assert(UINT_MAX == (unsigned int)~0ULL, "");
|
/external/python/cpython2/Lib/test/ |
test_ucn.py | 16 from _testcapi import INT_MAX, PY_SSIZE_T_MAX, UINT_MAX 18 INT_MAX = PY_SSIZE_T_MAX = UINT_MAX = 2**64 - 1 147 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX") 148 @unittest.skipUnless(UINT_MAX < sys.maxint, "needs UINT_MAX < sys.maxint") 149 @test_support.bigmemtest(minsize=UINT_MAX + 1, 157 x = b'\\N{SPACE' + b'x' * int(UINT_MAX + 1) + b'}' 158 self.assertEqual(len(x), len(b'\\N{SPACE}') + (UINT_MAX + 1))
|
/device/google/contexthub/firmware/lib/libc/ |
memset.c | 94 #if UINT_MAX > 0xffff 97 #if UINT_MAX > 0xffffffff
|
/external/clang/lib/Headers/ |
limits.h | 50 #undef UINT_MAX 72 #define UINT_MAX (__INT_MAX__ *2U +1U)
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
max.pass.cpp | 48 test<char32_t>(UINT_MAX); 53 test<unsigned int>(UINT_MAX);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
SystemZHazardRecognizer.cpp | 87 LastFPdOpCycleIdx = UINT_MAX; 154 if (CriticalResourceIdx != UINT_MAX && 157 CriticalResourceIdx = UINT_MAX; 238 if (CriticalResourceIdx != UINT_MAX) 249 if (LastFPdOpCycleIdx != UINT_MAX) 257 CriticalResourceIdx = UINT_MAX; 303 (CriticalResourceIdx == UINT_MAX || 370 if (LastFPdOpCycleIdx == UINT_MAX) 395 else if (CriticalResourceIdx != UINT_MAX) {
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
limits.h | 73 #define UINT_MAX __UINT_MAX
|
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
underlying_type.pass.cpp | 28 enum F { W = UINT_MAX };
|
/external/swiftshader/src/OpenGL/compiler/ |
AnalyzeCallDepth.cpp | 73 return UINT_MAX; 84 if(calleeDepth != UINT_MAX) ++calleeDepth; 232 if(depth != UINT_MAX) ++depth; 237 if(globalDepth != UINT_MAX) ++globalDepth;
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
typedefs.h | 104 #define maxUWord16 UINT_MAX 126 #define maxUWord32 UINT_MAX
|
/external/python/cpython3/Lib/test/ |
test_ucn.py | 18 from _testcapi import INT_MAX, PY_SSIZE_T_MAX, UINT_MAX 20 INT_MAX = PY_SSIZE_T_MAX = UINT_MAX = 2**64 - 1 224 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX") 225 @support.bigmemtest(size=UINT_MAX + 1, memuse=2 + 1, dry_run=False) 228 x = b'\\N{SPACE' + b'x' * (UINT_MAX + 1) + b'}' 229 self.assertEqual(len(x), len(b'\\N{SPACE}') + (UINT_MAX + 1))
|
/external/vboot_reference/firmware/lib/ |
vboot_audio.c | 19 #ifndef UINT_MAX 20 #define UINT_MAX 4294967295U /* 0xffffffff */ 112 if ((sizeof(VbDevMusicNote) > UINT_MAX / hdr->count) || 114 UINT_MAX - hdr->count * sizeof(VbDevMusicNote))) { 167 if (hdr->count > (UINT_MAX / sizeof(VbDevMusicNote) - 1)) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_structmembers.py | 4 INT_MAX, INT_MIN, UINT_MAX, \
44 ts.T_UINT = UINT_MAX
45 self.assertEqual(ts.T_UINT, UINT_MAX)
|