HomeSort by relevance Sort by last modified time
    Searched refs:UINT_MAX (Results 1 - 25 of 536) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/syslinux/gpxe/src/arch/i386/include/
limits.h 33 #define UINT_MAX 4294967295U
42 #define UINT_MAX 4294967295U
  /external/syslinux/gpxe/src/arch/x86_64/include/
limits.h 31 #define UINT_MAX 4294967295U
40 #define UINT_MAX 4294967295U
  /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
  /toolchain/binutils/binutils-2.27/intl/
gmo.h 45 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
50 #ifndef UINT_MAX
51 # define UINT_MAX UINT_MAX_32_BITS
54 #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
  /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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
limits_h.pass.cpp 62 #ifndef UINT_MAX
63 #error UINT_MAX not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.limits/c.limits/
climits.pass.cpp 62 #ifndef UINT_MAX
63 #error UINT_MAX not defined
  /external/clang/test/Headers/
limits.cpp 15 _Static_assert(INT_MAX == UINT_MAX/2, "");
25 _Static_assert(UINT_MAX == (unsigned int)~0ULL, "");
  /external/syslinux/com32/include/
limits.h 31 #define UINT_MAX 4294967295U
  /external/libvncserver/common/
md5.h 52 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
57 # ifndef UINT_MAX
58 # define UINT_MAX UINT_MAX_32_BITS
61 # if UINT_MAX == UINT_MAX_32_BITS
  /external/valgrind/none/tests/s390x/
lpr.c 81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX);
85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX);
90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX);
  /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))
  /frameworks/compile/slang/
slang_version.h 22 #define RS_DEVELOPMENT_API UINT_MAX
  /system/update_engine/common/
boot_control_interface.h 36 static const Slot kInvalidSlot = UINT_MAX;
  /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 43 test<char32_t>(UINT_MAX);
48 test<unsigned int>(UINT_MAX);
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
limits.h 50 #undef UINT_MAX
72 #define UINT_MAX (__INT_MAX__ *2U +1U)

Completed in 776 milliseconds

1 2 3 4 5 6 7 8 91011>>