Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp282 static_assert((std::is_same<decltype(isless((float)0, (float)0)), bool>::value), ""); in test_isless()
283 static_assert((std::is_same<decltype(isless((float)0, (double)0)), bool>::value), ""); in test_isless()
284 static_assert((std::is_same<decltype(isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
285 static_assert((std::is_same<decltype(isless((double)0, (float)0)), bool>::value), ""); in test_isless()
286 static_assert((std::is_same<decltype(isless((double)0, (double)0)), bool>::value), ""); in test_isless()
287 static_assert((std::is_same<decltype(isless((double)0, (long double)0)), bool>::value), ""); in test_isless()
288 static_assert((std::is_same<decltype(isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
289 static_assert((std::is_same<decltype(isless((long double)0, (double)0)), bool>::value), ""); in test_isless()
290 … static_assert((std::is_same<decltype(isless((long double)0, (long double)0)), bool>::value), ""); in test_isless()
291 assert(isless(-1.0, 0.F) == true); in test_isless()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dmath_win32.h55 _LIBCPP_ALWAYS_INLINE bool isless( double x, double y ) in isless() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp560 #ifdef isless in test_isless()
561 #error isless defined in test_isless()
563 static_assert((std::is_same<decltype(std::isless((float)0, (float)0)), bool>::value), ""); in test_isless()
564 static_assert((std::is_same<decltype(std::isless((float)0, (double)0)), bool>::value), ""); in test_isless()
565 static_assert((std::is_same<decltype(std::isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
566 static_assert((std::is_same<decltype(std::isless((double)0, (float)0)), bool>::value), ""); in test_isless()
567 static_assert((std::is_same<decltype(std::isless((double)0, (double)0)), bool>::value), ""); in test_isless()
568 static_assert((std::is_same<decltype(std::isless(0, (double)0)), bool>::value), ""); in test_isless()
569 … static_assert((std::is_same<decltype(std::isless((double)0, (long double)0)), bool>::value), ""); in test_isless()
570 static_assert((std::is_same<decltype(std::isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath151 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;
/ndk/docs/text/
DCHANGES.text923 isnan, isnormal, isgreater, isgreaterequal, isless, islessequal,