Home
last modified time | relevance | path

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

1234567

/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/opencv3/samples/cpp/tutorial_code/photo/seamless_cloning/
Dcloning_gui.cpp178 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/
Dcloning_gui.cpp179 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()
Dcreate_mask.cpp118 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/
Dstring_number_conversions_unittest.cc113 {"-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/
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()
Daddress_map_unittest.cc85 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/
Dlpr.c81 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()
Dfpconv.c34 I2F(insn, INT_MIN, target_type); \
47 I2F(insn, INT_MIN, target_type); \
/external/libchrome/base/strings/
Dstring_number_conversions_unittest.cc117 {"-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/
Dtest_real_10.expected2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
Dtest_real_10.json2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
/external/clang/test/Headers/
Dlimits.cpp10 _Static_assert(INT_MAX == -(INT_MIN+1), "");
20 _Static_assert(INT_MIN == -INT_MAX-1, "");
/external/libcxx/test/std/depr/depr.c.headers/
Dlimits_h.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/external/libcxx/test/std/language.support/support.limits/c.limits/
Dclimits.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/external/clang/lib/Headers/
Dlimits.h48 #undef INT_MIN
67 #define INT_MIN (-__INT_MAX__ -1) macro
/external/v8/src/
Dconversions.h46 if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs. in FastD2IChecked()
/external/libvpx/libvpx/
Dargs.c163 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/
Ddeduplication.cpp7 int i = INT_MIN; in overflow()
/external/iptables/include/linux/
Dnetfilter_ipv6.h58 NF_IP6_PRI_FIRST = INT_MIN,
/external/kernel-headers/original/uapi/linux/
Dnetfilter_ipv6.h63 NF_IP6_PRI_FIRST = INT_MIN,

1234567