/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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | add_mpi_RRR.ll | 8 @g0 = private unnamed_addr constant [50 x i8] c"%x : Q6_R_add_mpyi_RRR(INT_MIN,INT_MIN,INT_MIN)\0A… 9 @g1 = private unnamed_addr constant [45 x i8] c"%x : Q6_R_add_mpyi_RRR(-1,INT_MIN,INT_MIN)\0A\00",…
|
/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()
|
/external/libchrome/base/strings/ |
D | string_number_conversions_unittest.cc | 120 {"-2147483648", INT_MIN, true}, in TEST() 136 {"-2147483649", INT_MIN, false}, in TEST() 137 {"-99999999999", INT_MIN, false}, in TEST() 246 {"-2147483648", INT_MIN, true}, in TEST() 450 {"-80000000", INT_MIN, true}, in TEST() 452 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 457 {"-0x80000000", INT_MIN, true}, in TEST() 458 {"-80000000", INT_MIN, true}, in TEST() 460 {"-80000001", INT_MIN, false}, // Underflow test. in TEST() 568 {"-80000000", INT_MIN, true}, in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | apint-add.ll | 6 ;; Flip sign bit then add INT_MIN -> nop. 16 ;; Flip sign bit then add INT_MIN -> nop. 26 ;; Flip sign bit then add INT_MIN -> nop. 102 ;; Flip sign bit then add INT_MIN -> nop. 113 ;; Flip sign bit then add INT_MIN -> nop. 124 ;; Flip sign bit then add INT_MIN -> nop.
|
/external/pdfium/third_party/libtiff/ |
D | 0017-safe_skews_in_gtTileContig.patch | 38 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 53 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 70 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 80 + if(safeskew > INT_MAX || safeskew < INT_MIN){
|
/external/deqp-deps/glslang/Test/ |
D | cppIntMinOverNegativeOne.frag | 2 #error INT_MIN / -1 should yield 0, something went wrong. 5 #error INT_MIN % -1 should yield 0, something went wrong.
|
D | constFoldIntMin.frag | 7 int v = -2147483648 / -1; // INT_MIN 10 int y = -2147483648 % -1; // INT_MIN
|
/external/v8/src/ |
D | conversions.h | 30 if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs. in FastD2IChecked() 41 DCHECK(x >= INT_MIN); in FastD2I()
|
/external/jsoncpp/test/data/ |
D | test_real_10.json | 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
|
D | test_real_10.expected | 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
|
/external/google-fruit/examples/simple_injection/ |
D | checked_adder.cpp | 29 const int half_min = INT_MIN / 2; in add_overflows() 55 return (y - half_min + x) < (INT_MIN - half_min); in add_overflows()
|
/external/clang/test/Headers/ |
D | limits.cpp | 10 _Static_assert(INT_MAX == -(INT_MIN+1), ""); 20 _Static_assert(INT_MIN == -INT_MAX-1, "");
|
/external/ltp/testcases/misc/math/abs/ |
D | abs01.c | 75 i = llabs(INT_MIN) + (long long)INT_MIN; in main()
|
/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/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 54 #ifndef INT_MIN 55 #error INT_MIN not defined
|
/external/python/cpython2/Lib/test/ |
D | test_structmembers.py | 9 INT_MAX, INT_MIN, UINT_MAX, \ 44 ts.T_INT = INT_MIN 45 self.assertEqual(ts.T_INT, INT_MIN)
|
D | test_fcntl.py | 102 from _testcapi import INT_MAX, INT_MIN 109 fcntl.fcntl(INT_MIN - 1, fcntl.F_SETFL, os.O_NONBLOCK) 111 fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK)
|
/external/python/cpython2/Python/ |
D | asdl.c | 11 if (size < 0 || size == INT_MIN || in asdl_seq_new() 42 if (size < 0 || size == INT_MIN || in asdl_int_seq_new()
|
/external/python/cpython3/Lib/test/ |
D | test_structmembers.py | 9 INT_MAX, INT_MIN, UINT_MAX, \ 57 ts.T_INT = INT_MIN 58 self.assertEqual(ts.T_INT, INT_MIN)
|
/external/clang/lib/Headers/ |
D | limits.h | 48 #undef INT_MIN 67 #define INT_MIN (-__INT_MAX__ -1) macro
|