Searched refs:isgreater (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | math_h.pass.cpp | 254 static_assert((std::is_same<decltype(isgreater((float)0, (float)0)), bool>::value), ""); in test_isgreater() 255 static_assert((std::is_same<decltype(isgreater((float)0, (double)0)), bool>::value), ""); in test_isgreater() 256 static_assert((std::is_same<decltype(isgreater((float)0, (long double)0)), bool>::value), ""); in test_isgreater() 257 static_assert((std::is_same<decltype(isgreater((double)0, (float)0)), bool>::value), ""); in test_isgreater() 258 static_assert((std::is_same<decltype(isgreater((double)0, (double)0)), bool>::value), ""); in test_isgreater() 259 static_assert((std::is_same<decltype(isgreater((double)0, (long double)0)), bool>::value), ""); in test_isgreater() 260 static_assert((std::is_same<decltype(isgreater((long double)0, (float)0)), bool>::value), ""); in test_isgreater() 261 static_assert((std::is_same<decltype(isgreater((long double)0, (double)0)), bool>::value), ""); in test_isgreater() 262 …static_assert((std::is_same<decltype(isgreater((long double)0, (long double)0)), bool>::value), ""… in test_isgreater() 263 assert(isgreater(-1.0, 0.F) == false); in test_isgreater()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | math_win32.h | 43 _LIBCPP_ALWAYS_INLINE bool isgreater( double x, double y ) in isgreater() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 524 #ifdef isgreater in test_isgreater() 525 #error isgreater defined in test_isgreater() 527 static_assert((std::is_same<decltype(std::isgreater((float)0, (float)0)), bool>::value), ""); in test_isgreater() 528 static_assert((std::is_same<decltype(std::isgreater((float)0, (double)0)), bool>::value), ""); in test_isgreater() 529 …static_assert((std::is_same<decltype(std::isgreater((float)0, (long double)0)), bool>::value), ""); in test_isgreater() 530 static_assert((std::is_same<decltype(std::isgreater((double)0, (float)0)), bool>::value), ""); in test_isgreater() 531 static_assert((std::is_same<decltype(std::isgreater((double)0, (double)0)), bool>::value), ""); in test_isgreater() 532 static_assert((std::is_same<decltype(std::isgreater(0, (double)0)), bool>::value), ""); in test_isgreater() 533 …static_assert((std::is_same<decltype(std::isgreater((double)0, (long double)0)), bool>::value), ""… in test_isgreater() 534 …static_assert((std::is_same<decltype(std::isgreater((long double)0, (float)0)), bool>::value), ""); in test_isgreater() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 149 bool isgreater(arithmetic x, arithmetic y); 456 // isgreater 458 #ifdef isgreater 465 return isgreater(__x, __y); 468 #undef isgreater 478 isgreater(_A1 __x, _A2 __y) _NOEXCEPT 484 #endif // isgreater 644 using ::isgreater;
|
/ndk/docs/text/ |
D | CHANGES.text | 923 isnan, isnormal, isgreater, isgreaterequal, isless, islessequal,
|