Home
last modified time | relevance | path

Searched refs:INT_MIN (Results 1 – 25 of 219) sorted by relevance

123456789

/external/clang/test/Analysis/
Dswitch-case.c6 #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()
Dadditive-folding.cpp7 #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()
Dadditive-folding-range-constraints.c7 #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/
Dadd_mpi_RRR.ll8 @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/
Dstatic_range_map_unittest.cc79 { 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
Dstatic_address_map_unittest.cc117 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()
Drange_map_unittest.cc370 { 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/
Dstring_number_conversions_unittest.cc120 {"-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/
Dapint-add.ll6 ;; 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/
D0017-safe_skews_in_gtTileContig.patch38 + 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/
DcppIntMinOverNegativeOne.frag2 #error INT_MIN / -1 should yield 0, something went wrong.
5 #error INT_MIN % -1 should yield 0, something went wrong.
DconstFoldIntMin.frag7 int v = -2147483648 / -1; // INT_MIN
10 int y = -2147483648 % -1; // INT_MIN
/external/v8/src/
Dconversions.h30 if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs. in FastD2IChecked()
41 DCHECK(x >= INT_MIN); in FastD2I()
/external/jsoncpp/test/data/
Dtest_real_10.json2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
Dtest_real_10.expected2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
/external/google-fruit/examples/simple_injection/
Dchecked_adder.cpp29 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/
Dlimits.cpp10 _Static_assert(INT_MAX == -(INT_MIN+1), "");
20 _Static_assert(INT_MIN == -INT_MAX-1, "");
/external/ltp/testcases/misc/math/abs/
Dabs01.c75 i = llabs(INT_MIN) + (long long)INT_MIN; in main()
/external/libcxx/test/std/language.support/support.limits/c.limits/
Dclimits.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/external/libcxx/test/std/depr/depr.c.headers/
Dlimits_h.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/external/python/cpython2/Lib/test/
Dtest_structmembers.py9 INT_MAX, INT_MIN, UINT_MAX, \
44 ts.T_INT = INT_MIN
45 self.assertEqual(ts.T_INT, INT_MIN)
Dtest_fcntl.py102 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/
Dasdl.c11 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/
Dtest_structmembers.py9 INT_MAX, INT_MIN, UINT_MAX, \
57 ts.T_INT = INT_MIN
58 self.assertEqual(ts.T_INT, INT_MIN)
/external/clang/lib/Headers/
Dlimits.h48 #undef INT_MIN
67 #define INT_MIN (-__INT_MAX__ -1) macro

123456789