HomeSort by relevance Sort by last modified time
    Searched defs:UINT_MAX (Results 1 - 16 of 16) sorted by null

  /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-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...]
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...]
  /device/linaro/bootloader/edk2/StdLib/Include/
limits.h 73 #define UINT_MAX __UINT_MAX
  /external/clang/lib/Headers/
limits.h 50 #undef UINT_MAX
72 #define UINT_MAX (__INT_MAX__ *2U +1U)
opencl-c.h 268 #define UINT_MAX 0xffffffff
    [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
  /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)) {
  /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/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
Utils.java 162 if (longVal > UINT_MAX)
299 private static long UINT_MAX = 0xffffffffl;
  /external/u-boot/include/linux/
kernel.h 12 #define UINT_MAX (~0U)
  /external/google-breakpad/src/testing/gtest/test/
gtest-death-test_test.cc     [all...]
  /external/googletest/googletest/test/
googletest-death-test-test.cc     [all...]
  /external/libmtp/src/
ptp-pack.c 30 #ifndef UINT_MAX
31 # define UINT_MAX 0xFFFFFFFF
282 if (n >= UINT_MAX/sizeof(uint32_t))
323 if (n >= UINT_MAX/sizeof(uint16_t))
749 if (n >= UINT_MAX/sizeof(val->a.v[0])) \
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 208 UINT_MAX = 4294967295

Completed in 842 milliseconds