Searched refs:isless (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 277 static_assert((std::is_same<decltype(isless((float)0, (float)0)), bool>::value), ""); in test_isless() 278 static_assert((std::is_same<decltype(isless((float)0, (double)0)), bool>::value), ""); in test_isless() 279 static_assert((std::is_same<decltype(isless((float)0, (long double)0)), bool>::value), ""); in test_isless() 280 static_assert((std::is_same<decltype(isless((double)0, (float)0)), bool>::value), ""); in test_isless() 281 static_assert((std::is_same<decltype(isless((double)0, (double)0)), bool>::value), ""); in test_isless() 282 static_assert((std::is_same<decltype(isless((double)0, (long double)0)), bool>::value), ""); in test_isless() 283 static_assert((std::is_same<decltype(isless((long double)0, (float)0)), bool>::value), ""); in test_isless() 284 static_assert((std::is_same<decltype(isless((long double)0, (double)0)), bool>::value), ""); in test_isless() 285 … static_assert((std::is_same<decltype(isless((long double)0, (long double)0)), bool>::value), ""); in test_isless() 286 assert(isless(-1.0, 0.F) == true); in test_isless()
|
/external/libcxx/include/support/win32/ |
D | math_win32.h | 57 _LIBCPP_ALWAYS_INLINE bool isless( double x, double y ) in isless() function
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 64 Ambiguous isless(Ambiguous, Ambiguous){ return Ambiguous(); } in isless() function 636 #ifdef isless in test_isless() 637 #error isless defined in test_isless() 639 static_assert((std::is_same<decltype(std::isless((float)0, (float)0)), bool>::value), ""); in test_isless() 640 static_assert((std::is_same<decltype(std::isless((float)0, (double)0)), bool>::value), ""); in test_isless() 641 static_assert((std::is_same<decltype(std::isless((float)0, (long double)0)), bool>::value), ""); in test_isless() 642 static_assert((std::is_same<decltype(std::isless((double)0, (float)0)), bool>::value), ""); in test_isless() 643 static_assert((std::is_same<decltype(std::isless((double)0, (double)0)), bool>::value), ""); in test_isless() 644 static_assert((std::is_same<decltype(std::isless(0, (double)0)), bool>::value), ""); in test_isless() 645 … static_assert((std::is_same<decltype(std::isless((double)0, (long double)0)), bool>::value), ""); in test_isless() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins.c | 57 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(__lcpp_x, __lcpp_y); 528 #undef isless 538 isless(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT 544 #endif // isless 646 using ::isless;
|