Searched refs:isgreater (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 249 static_assert((std::is_same<decltype(isgreater((float)0, (float)0)), bool>::value), ""); in test_isgreater() 250 static_assert((std::is_same<decltype(isgreater((float)0, (double)0)), bool>::value), ""); in test_isgreater() 251 static_assert((std::is_same<decltype(isgreater((float)0, (long double)0)), bool>::value), ""); in test_isgreater() 252 static_assert((std::is_same<decltype(isgreater((double)0, (float)0)), bool>::value), ""); in test_isgreater() 253 static_assert((std::is_same<decltype(isgreater((double)0, (double)0)), bool>::value), ""); in test_isgreater() 254 static_assert((std::is_same<decltype(isgreater((double)0, (long double)0)), bool>::value), ""); in test_isgreater() 255 static_assert((std::is_same<decltype(isgreater((long double)0, (float)0)), bool>::value), ""); in test_isgreater() 256 static_assert((std::is_same<decltype(isgreater((long double)0, (double)0)), bool>::value), ""); in test_isgreater() 257 …static_assert((std::is_same<decltype(isgreater((long double)0, (long double)0)), bool>::value), ""… in test_isgreater() 258 assert(isgreater(-1.0, 0.F) == false); in test_isgreater()
|
/external/libcxx/include/support/win32/ |
D | math_win32.h | 45 _LIBCPP_ALWAYS_INLINE bool isgreater( double x, double y ) in isgreater() function
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 62 Ambiguous isgreater(Ambiguous, Ambiguous){ return Ambiguous(); } in isgreater() function 598 #ifdef isgreater in test_isgreater() 599 #error isgreater defined in test_isgreater() 601 static_assert((std::is_same<decltype(std::isgreater((float)0, (float)0)), bool>::value), ""); in test_isgreater() 602 static_assert((std::is_same<decltype(std::isgreater((float)0, (double)0)), bool>::value), ""); in test_isgreater() 603 …static_assert((std::is_same<decltype(std::isgreater((float)0, (long double)0)), bool>::value), ""); in test_isgreater() 604 static_assert((std::is_same<decltype(std::isgreater((double)0, (float)0)), bool>::value), ""); in test_isgreater() 605 static_assert((std::is_same<decltype(std::isgreater((double)0, (double)0)), bool>::value), ""); in test_isgreater() 606 static_assert((std::is_same<decltype(std::isgreater(0, (double)0)), bool>::value), ""); in test_isgreater() 607 …static_assert((std::is_same<decltype(std::isgreater((double)0, (long double)0)), bool>::value), ""… in test_isgreater() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins.c | 55 P(isgreater, (1., 2.)); in main()
|
/external/libcxx/include/ |
D | cmath | 149 bool isgreater(arithmetic x, arithmetic y); 456 // isgreater 458 #ifdef isgreater 465 return isgreater(__lcpp_x, __lcpp_y); 468 #undef isgreater 478 isgreater(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT 484 #endif // isgreater 644 using ::isgreater;
|