Home
last modified time | relevance | path

Searched refs:isgreater (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp254 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/
Dmath_win32.h43 _LIBCPP_ALWAYS_INLINE bool isgreater( double x, double y ) in isgreater() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp524 #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/
Dcmath149 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/
DCHANGES.text923 isnan, isnormal, isgreater, isgreaterequal, isless, islessequal,