Searched defs:UINT_MAX (Results 1 - 12 of 12) sorted by relevance
/external/libvncserver/common/ |
H A D | 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 macro 61 # if UINT_MAX == UINT_MAX_32_BITS
|
/external/clang/lib/Headers/ |
H A D | limits.h | 50 #undef UINT_MAX macro 72 #define UINT_MAX (__INT_MAX__ *2U +1U) macro
|
/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/ |
H A D | limits.h | 50 #undef UINT_MAX macro 72 #define UINT_MAX (__INT_MAX__ *2U +1U) macro
|
/external/clang/test/Analysis/ |
H A D | additive-folding.cpp | 5 #define UINT_MAX (~0U) macro 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...] |
H A D | additive-folding-range-constraints.c | 5 #define UINT_MAX (~0U) macro 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); // expecte [all...] |
/external/e2fsprogs/intl/ |
H A D | 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 macro 55 #if UINT_MAX == UINT_MAX_32_BITS
|
/external/vboot_reference/firmware/lib/ |
H A D | vboot_audio.c | 19 #ifndef UINT_MAX 20 #define UINT_MAX 4294967295U /* 0xffffffff */ macro 112 if ((sizeof(VbDevMusicNote) > UINT_MAX / hdr->count) || 114 UINT_MAX - hdr->count * sizeof(VbDevMusicNote))) { 167 if (hdr->count > (UINT_MAX / sizeof(VbDevMusicNote) - 1)) {
|
/external/google-breakpad/src/testing/gtest/test/ |
H A D | gtest-death-test_test.cc | 1205 msg4 << UINT_MAX; local 1209 EXPECT_EQ(UINT_MAX, uint_result);
|
/external/gtest/test/ |
H A D | gtest-death-test_test.cc | 1202 msg4 << UINT_MAX; local 1206 EXPECT_EQ(UINT_MAX, uint_result);
|
/external/protobuf/gtest/test/ |
H A D | gtest-death-test_test.cc | 1085 msg4 << UINT_MAX; local 1089 EXPECT_EQ(UINT_MAX, uint_result);
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
H A D | gtest-death-test_test.cc | 1268 msg4 << UINT_MAX; local 1272 EXPECT_EQ(UINT_MAX, uint_result);
|
/external/clang/lib/Sema/ |
H A D | SemaDeclAttr.cpp | 219 unsigned Idx = UINT_MAX) { 223 if (Idx != UINT_MAX) 217 checkUInt32Argument(Sema &S, const AttributeList &Attr, const Expr *Expr, uint32_t &Val, unsigned Idx = UINT_MAX) argument
|
Completed in 5641 milliseconds