HomeSort by relevance Sort by last modified time
    Searched refs:isnormal (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/v8/src/base/
qnx-math.h 14 #undef isnormal macro
  /external/ceres-solver/include/ceres/
fpclassify.h 53 inline bool IsNormal (double x) {
61 // On Android, when using the STLPort, the C++ isnan and isnormal functions
64 inline bool IsNormal (double x) { return isnormal(x); }
81 inline bool IsNormal (double x) { return std::isnormal(x); }
  /external/libcxx/include/support/win32/
math_win32.h 37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) function
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) function
  /bionic/libc/bionic/
fpclassify.cpp 108 __strong_alias(isnormal, __isnormal);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 201 if (!isnormal(z))
s_fma.c 213 if (!isnormal(z))
  /bionic/tests/
math_test.cpp 145 TEST(math, isnormal) {
146 ASSERT_TRUE(isnormal(123.0f));
147 ASSERT_TRUE(isnormal(123.0));
148 ASSERT_TRUE(isnormal(123.0L));
149 ASSERT_FALSE(isnormal(float_subnormal()));
150 ASSERT_FALSE(isnormal(double_subnormal()));
151 ASSERT_FALSE(isnormal(ldouble_subnormal()));
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 328 return (std::isnormal)(x);
371 inline bool (isnormal)(T x) function in namespace:boost::math
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 239 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), "");
240 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), "");
241 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), "");
242 assert(isnormal(-1.0) == true);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 246 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), "");
247 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), "");
248 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), "");
249 assert(isnormal(-1.0) == true);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro

Completed in 2671 milliseconds

1 2 3 4