/external/clang/test/Analysis/ |
D | switch-case.c | 6 #define INT_MIN 0x80000000 macro 52 case INT_MIN ... 10: in testSwitchCond() 63 case INT_MIN ... 9: in testSwitchCond() 79 case INT_MIN ... 9: in testDefaultUnreachable() 95 case INT_MIN ... 4: in testBranchReachability() 125 case INT_MIN ... 9: in testDefaultBranchRange()
|
D | additive-folding.cpp | 7 #define INT_MIN (-INT_MAX - 1) macro 146 int min = INT_MIN; in mixedWraparoundSanityCheck() 154 int min = INT_MIN; in mixedWraparoundLE_GT() 163 int min = INT_MIN; in mixedWraparoundGE_LT() 180 int sMin = INT_MIN; in mixedSignedness() 181 unsigned uMin = INT_MIN; in mixedSignedness()
|
D | additive-folding-range-constraints.c | 7 #define INT_MIN (-INT_MAX - 1) macro 75 int min = INT_MIN; in mixedComparisons1() 143 int min = INT_MIN; in mixedComparisons7() 204 int min = INT_MIN; in mixedSignedness5() 211 int min = INT_MIN; in mixedSignedness6() 274 unsigned min = INT_MIN; in mixedSignedness15() 281 unsigned min = INT_MIN; in mixedSignedness16() 302 clang_analyzer_eval(a == (unsigned)INT_MIN); // expected-warning{{UNKNOWN}} in mixedSignedness18()
|
/external/opencv3/samples/cpp/tutorial_code/photo/seamless_cloning/ |
D | cloning_gui.cpp | 178 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in source() 190 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in destination() 265 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in destination() 301 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in main() 303 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in main() 512 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in main()
|
/external/opencv3/samples/cpp/ |
D | cloning_gui.cpp | 179 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in source() 191 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in destination() 266 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in destination() 302 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in main() 304 minxd = INT_MAX; minyd = INT_MAX; maxxd = INT_MIN; maxyd = INT_MIN; in main() 513 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in main()
|
D | create_mask.cpp | 118 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in mouseHandler() 135 minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN; in main()
|
/external/libweave/third_party/chromium/base/strings/ |
D | string_number_conversions_unittest.cc | 113 {"-2147483648", INT_MIN, true}, in TEST() 129 {"-2147483649", INT_MIN, false}, in TEST() 130 {"-99999999999", INT_MIN, false}, in TEST() 208 {"-2147483648", INT_MIN, true}, in TEST() 382 {"-80000000", INT_MIN, true}, in TEST() 384 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 389 {"-0x80000000", INT_MIN, true}, in TEST() 390 {"-80000000", INT_MIN, true}, in TEST() 392 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 500 {"-80000000", INT_MIN, true}, in TEST() [all …]
|
/external/google-breakpad/src/processor/ |
D | static_range_map_unittest.cc | 79 { INT_MIN, 16, 1, true }, // lowest possible range 127 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive 130 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice 141 { INT_MIN, 0, 100, false }, // makes RetrieveRange check low end 149 { INT_MIN + 1, 1, 110, true }, 151 { INT_MIN, 0, 112, false }, // makes RetrieveRange check low end
|
D | static_address_map_unittest.cc | 117 target = INT_MIN; in RetrieveTester() 159 target = INT_MIN; in TEST_F() 178 target = INT_MIN; in TEST_F() 197 target = INT_MIN; in TEST_F() 216 target = INT_MIN; in TEST_F()
|
D | range_map_unittest.cc | 370 { INT_MIN, 16, 1, true }, // lowest possible range in RunTests() 418 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive in RunTests() 421 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice in RunTests() 432 { INT_MIN, 0, 100, false }, // makes RetrieveRange check low end in RunTests() 440 { INT_MIN + 1, 1, 110, true }, in RunTests() 442 { INT_MIN, 0, 112, false }, // makes RetrieveRange check low end in RunTests()
|
D | address_map_unittest.cc | 85 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address)); in DoAddressMapTest() 99 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address)); in DoAddressMapTest()
|
/external/valgrind/none/tests/s390x/ |
D | lpr.c | 81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX); in main() 85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX); in main() 90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX); in main()
|
D | fpconv.c | 34 I2F(insn, INT_MIN, target_type); \ 47 I2F(insn, INT_MIN, target_type); \
|
/external/libchrome/base/strings/ |
D | string_number_conversions_unittest.cc | 117 {"-2147483648", INT_MIN, true}, in TEST() 133 {"-2147483649", INT_MIN, false}, in TEST() 134 {"-99999999999", INT_MIN, false}, in TEST() 242 {"-2147483648", INT_MIN, true}, in TEST() 446 {"-80000000", INT_MIN, true}, in TEST() 448 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 453 {"-0x80000000", INT_MIN, true}, in TEST() 454 {"-80000000", INT_MIN, true}, in TEST() 456 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 564 {"-80000000", INT_MIN, true}, in TEST() [all …]
|
/external/jsoncpp/test/data/ |
D | test_real_10.expected | 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
|
D | test_real_10.json | 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
|
/external/clang/test/Headers/ |
D | limits.cpp | 10 _Static_assert(INT_MAX == -(INT_MIN+1), ""); 20 _Static_assert(INT_MIN == -INT_MAX-1, "");
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 54 #ifndef INT_MIN 55 #error INT_MIN not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 54 #ifndef INT_MIN 55 #error INT_MIN not defined
|
/external/clang/lib/Headers/ |
D | limits.h | 48 #undef INT_MIN 67 #define INT_MIN (-__INT_MAX__ -1) macro
|
/external/v8/src/ |
D | conversions.h | 46 if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs. in FastD2IChecked()
|
/external/libvpx/libvpx/ |
D | args.c | 163 if (rawval >= INT_MIN && rawval <= INT_MAX) in arg_parse_int() 188 if (rawval >= INT_MIN && rawval <= INT_MAX) in arg_parse_rational() 198 if (rawval >= INT_MIN && rawval <= INT_MAX) in arg_parse_rational()
|
/external/compiler-rt/test/ubsan/TestCases/Misc/ |
D | deduplication.cpp | 7 int i = INT_MIN; in overflow()
|
/external/iptables/include/linux/ |
D | netfilter_ipv6.h | 58 NF_IP6_PRI_FIRST = INT_MIN,
|
/external/kernel-headers/original/uapi/linux/ |
D | netfilter_ipv6.h | 63 NF_IP6_PRI_FIRST = INT_MIN,
|