Home
last modified time | relevance | path

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

/ndk/sources/android/support/src/musl-math/
Dscalblnf.c8 else if (n < INT_MIN) in scalblnf()
9 n = INT_MIN; in scalblnf()
Dscalbln.c8 else if (n < INT_MIN) in scalbln()
9 n = INT_MIN; in scalbln()
Dscalblnl.c15 else if (n < INT_MIN) in scalblnl()
16 n = INT_MIN; in scalblnl()
/ndk/tests/device/test-stlport/unit/
Dmacro_checks.cpp29 #if !defined (INT_MIN)
30 # error Missing INT_MIN definition.
33 #if !(INT_MIN < INT_MAX)
34 # error Weird INT_MIN or INT_MAX macro values.
Dsstream_test.cpp206 << INT_MIN << " " << LONG_MIN; in maxint()
223 CPPUNIT_ASSERT( i == INT_MIN ); in maxint()
/ndk/tests/device/test-gnustl-full/unit/
Dmacro_checks.cpp29 #if !defined (INT_MIN)
30 # error Missing INT_MIN definition.
33 #if !(INT_MIN < INT_MAX)
34 # error Weird INT_MIN or INT_MAX macro values.
Dsstream_test.cpp206 << INT_MIN << " " << LONG_MIN; in maxint()
223 CPPUNIT_ASSERT( i == INT_MIN ); in maxint()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dlimits_h.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/c.limits/
Dclimits.pass.cpp54 #ifndef INT_MIN
55 #error INT_MIN not defined
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
Dunderlying_type.pass.cpp17 enum E { V = INT_MIN };
/ndk/sources/third_party/googletest/googletest/samples/
Dsample1_unittest.cc124 EXPECT_FALSE(IsPrime(INT_MIN)); in TEST()
Dsample5_unittest.cc122 EXPECT_FALSE(IsPrime(INT_MIN)); in TEST_F()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dclimits29 INT_MIN
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
Dlowest.pass.cpp47 test<int>(INT_MIN); in main()
Dmin.pass.cpp47 test<int>(INT_MIN); in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Dinteger_traits.hpp121 public detail::integer_traits_base<wchar_t, INT_MIN, INT_MAX>
148 public detail::integer_traits_base<int, INT_MIN, INT_MAX>
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_limits.h233 # undef INT_MIN
234 # define INT_MIN -2147483648 macro
239 : public _STLP_PRIV _Integer_limits<int, INT_MIN, INT_MAX, -1, true>
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-printers_test.cc357 EXPECT_EQ("-2147483648", Print(INT_MIN)); // int32 in TEST()