Searched refs:isunordered (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 | 317 static_assert((std::is_same<decltype(isunordered((float)0, (float)0)), bool>::value), ""); in test_isunordered() 318 static_assert((std::is_same<decltype(isunordered((float)0, (double)0)), bool>::value), ""); in test_isunordered() 319 static_assert((std::is_same<decltype(isunordered((float)0, (long double)0)), bool>::value), ""); in test_isunordered() 320 static_assert((std::is_same<decltype(isunordered((double)0, (float)0)), bool>::value), ""); in test_isunordered() 321 static_assert((std::is_same<decltype(isunordered((double)0, (double)0)), bool>::value), ""); in test_isunordered() 322 … static_assert((std::is_same<decltype(isunordered((double)0, (long double)0)), bool>::value), ""); in test_isunordered() 323 static_assert((std::is_same<decltype(isunordered((long double)0, (float)0)), bool>::value), ""); in test_isunordered() 324 … static_assert((std::is_same<decltype(isunordered((long double)0, (double)0)), bool>::value), ""); in test_isunordered() 325 …static_assert((std::is_same<decltype(isunordered((long double)0, (long double)0)), bool>::value), … in test_isunordered() 326 assert(isunordered(-1.0, 0.F) == false); in test_isunordered()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | math_win32.h | 71 _LIBCPP_ALWAYS_INLINE bool isunordered( double x, double y ) in isunordered() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 593 #ifdef isunordered in test_isunordered() 594 #error isunordered defined in test_isunordered() 596 static_assert((std::is_same<decltype(std::isunordered((float)0, (float)0)), bool>::value), ""); in test_isunordered() 597 static_assert((std::is_same<decltype(std::isunordered((float)0, (double)0)), bool>::value), ""); in test_isunordered() 598 …static_assert((std::is_same<decltype(std::isunordered((float)0, (long double)0)), bool>::value), "… in test_isunordered() 599 static_assert((std::is_same<decltype(std::isunordered((double)0, (float)0)), bool>::value), ""); in test_isunordered() 600 … static_assert((std::is_same<decltype(std::isunordered((double)0, (double)0)), bool>::value), ""); in test_isunordered() 601 static_assert((std::is_same<decltype(std::isunordered(0, (double)0)), bool>::value), ""); in test_isunordered() 602 …static_assert((std::is_same<decltype(std::isunordered((double)0, (long double)0)), bool>::value), … in test_isunordered() 603 …static_assert((std::is_same<decltype(std::isunordered((long double)0, (float)0)), bool>::value), "… in test_isunordered() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 154 bool isunordered(arithmetic x, arithmetic y); 606 // isunordered 608 #ifdef isunordered 615 return isunordered(__x, __y); 618 #undef isunordered 628 isunordered(_A1 __x, _A2 __y) _NOEXCEPT 634 #endif // isunordered 649 using ::isunordered; 650 using ::isunordered;
|
/ndk/docs/text/ |
D | CHANGES.text | 575 islessgreater, isunordered, signbit
|