Home
last modified time | relevance | path

Searched refs:isnormal (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dmath_win32.h37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) in isnormal() function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
Dfpclassify.hpp328 return (std::isnormal)(x); in isnormal_impl()
371 inline bool (isnormal)(T x)
Dmath_fwd.hpp690 bool isnormal BOOST_NO_MACRO_EXPAND(T t);
1151 using boost::math::isnormal;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp246 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), ""); in test_isnormal()
247 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), ""); in test_isnormal()
248 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), ""); in test_isnormal()
249 assert(isnormal(-1.0) == true); in test_isnormal()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath147 bool isnormal(arithmetic x);
432 // isnormal
434 #ifdef isnormal
441 return isnormal(__x);
444 #undef isnormal
449 isnormal(_A1 __x) _NOEXCEPT
454 #endif // isnormal
643 using ::isnormal;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp512 #ifdef isnormal in test_isnormal()
513 #error isnormal defined in test_isnormal()
515 static_assert((std::is_same<decltype(std::isnormal((float)0)), bool>::value), ""); in test_isnormal()
516 static_assert((std::is_same<decltype(std::isnormal((double)0)), bool>::value), ""); in test_isnormal()
517 static_assert((std::is_same<decltype(std::isnormal(0)), bool>::value), ""); in test_isnormal()
518 static_assert((std::is_same<decltype(std::isnormal((long double)0)), bool>::value), ""); in test_isnormal()
519 assert(std::isnormal(-1.0) == true); in test_isnormal()
/ndk/docs/text/
DCHANGES.text923 isnan, isnormal, isgreater, isgreaterequal, isless, islessequal,