Home
last modified time | relevance | path

Searched refs:isless (Results 1 – 8 of 8) sorted by relevance

/external/libcxx/test/depr/depr.c.headers/
Dmath_h.disabled.cpp275 static_assert((std::is_same<decltype(isless((float)0, (float)0)), bool>::value), ""); in test_isless()
276 static_assert((std::is_same<decltype(isless((float)0, (double)0)), bool>::value), ""); in test_isless()
277 static_assert((std::is_same<decltype(isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
278 static_assert((std::is_same<decltype(isless((double)0, (float)0)), bool>::value), ""); in test_isless()
279 static_assert((std::is_same<decltype(isless((double)0, (double)0)), bool>::value), ""); in test_isless()
280 static_assert((std::is_same<decltype(isless((double)0, (long double)0)), bool>::value), ""); in test_isless()
281 static_assert((std::is_same<decltype(isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
282 static_assert((std::is_same<decltype(isless((long double)0, (double)0)), bool>::value), ""); in test_isless()
283 … static_assert((std::is_same<decltype(isless((long double)0, (long double)0)), bool>::value), ""); in test_isless()
284 assert(isless(-1.0, 0.F) == true); in test_isless()
/external/chromium_org/v8/src/base/
Dwin32-math.h33 int isless(double x, double y);
Dwin32-math.cc41 int isless(double x, double y) { in isless() function
/external/libcxx/include/support/win32/
Dmath_win32.h55 _LIBCPP_ALWAYS_INLINE bool isless( double x, double y ) in isless() function
/external/libcxx/test/numerics/c.math/
Dcmath.disabled.cpp552 #ifdef isless in test_isless()
553 #error isless defined in test_isless()
555 static_assert((std::is_same<decltype(std::isless((float)0, (float)0)), bool>::value), ""); in test_isless()
556 static_assert((std::is_same<decltype(std::isless((float)0, (double)0)), bool>::value), ""); in test_isless()
557 static_assert((std::is_same<decltype(std::isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
558 static_assert((std::is_same<decltype(std::isless((double)0, (float)0)), bool>::value), ""); in test_isless()
559 static_assert((std::is_same<decltype(std::isless((double)0, (double)0)), bool>::value), ""); in test_isless()
560 static_assert((std::is_same<decltype(std::isless(0, (double)0)), bool>::value), ""); in test_isless()
561 … static_assert((std::is_same<decltype(std::isless((double)0, (long double)0)), bool>::value), ""); in test_isless()
562 static_assert((std::is_same<decltype(std::isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
[all …]
/external/clang/test/CodeGen/
Dbuiltins.c59 P(isless, (1., 2.)); in main()
/external/libcxx/include/
Dcmath151 bool isless(arithmetic x, arithmetic y);
516 // isless
518 #ifdef isless
525 return isless(__x, __y);
528 #undef isless
538 isless(_A1 __x, _A2 __y) _NOEXCEPT
544 #endif // isless
646 using ::isless;
/external/chromium_org/v8/src/
Druntime.cc78 using std::isless;
7617 if (isless(x, y)) return Smi::FromInt(LESS); in RUNTIME_FUNCTION()