Home
last modified time | relevance | path

Searched refs:fpclassify (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dmath_win32.h106 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) in fpclassify() function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
Dfpclassify.hpp105 return (BOOST_FPCLASSIFY_PREFIX fpclassify(t) == (int)FP_NAN); in is_nan_helper()
125 return (std::fpclassify)(t); in BOOST_NO_MACRO_EXPAND()
248 inline int fpclassify BOOST_NO_MACRO_EXPAND(T t) in BOOST_NO_MACRO_EXPAND()
Dmath_fwd.hpp678 int fpclassify BOOST_NO_MACRO_EXPAND(T t);
1147 using boost::math::fpclassify;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp207 static_assert((std::is_same<decltype(fpclassify((float)0)), int>::value), ""); in test_fpclassify()
208 static_assert((std::is_same<decltype(fpclassify((double)0)), int>::value), ""); in test_fpclassify()
209 static_assert((std::is_same<decltype(fpclassify((long double)0)), int>::value), ""); in test_fpclassify()
210 assert(fpclassify(-1.0) == FP_NORMAL); in test_fpclassify()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
Dfp_traits.hpp47 #ifndef fpclassify
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath142 int fpclassify(arithmetic x);
336 // fpclassify
338 #ifdef fpclassify
345 return fpclassify(__x);
348 #undef fpclassify
353 fpclassify(_A1 __x) _NOEXCEPT
358 #endif // fpclassify
639 using ::fpclassify;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp443 #ifdef fpclassify in test_fpclassify()
444 #error fpclassify defined in test_fpclassify()
446 static_assert((std::is_same<decltype(std::fpclassify((float)0)), int>::value), ""); in test_fpclassify()
447 static_assert((std::is_same<decltype(std::fpclassify((double)0)), int>::value), ""); in test_fpclassify()
448 static_assert((std::is_same<decltype(std::fpclassify(0)), int>::value), ""); in test_fpclassify()
449 static_assert((std::is_same<decltype(std::fpclassify((long double)0)), int>::value), ""); in test_fpclassify()
450 assert(std::fpclassify(-1.0) == FP_NORMAL); in test_fpclassify()
/ndk/docs/text/
DCHANGES.text573 (*1) Math macro in bionic undefined by cmath: fpclassify, isfinite, isinf,