Searched refs:isless (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/test/depr/depr.c.headers/ |
D | math_h.disabled.cpp | 275 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/ |
D | win32-math.h | 33 int isless(double x, double y);
|
D | win32-math.cc | 41 int isless(double x, double y) { in isless() function
|
/external/libcxx/include/support/win32/ |
D | math_win32.h | 55 _LIBCPP_ALWAYS_INLINE bool isless( double x, double y ) in isless() function
|
/external/libcxx/test/numerics/c.math/ |
D | cmath.disabled.cpp | 552 #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/ |
D | builtins.c | 59 P(isless, (1., 2.)); in main()
|
/external/libcxx/include/ |
D | cmath | 151 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/ |
D | runtime.cc | 78 using std::isless; 7617 if (isless(x, y)) return Smi::FromInt(LESS); in RUNTIME_FUNCTION()
|