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

1 2 3

  /external/ceres-solver/include/ceres/
fpclassify.h 52 inline bool IsNormal (double x) {
63 inline bool IsNormal (double x) { return isnormal(x); }
85 inline bool IsNormal (double x) { return std::isnormal(x); }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 35 _LIBCPP_ALWAYS_INLINE bool isnormal( double num ) function
  /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 85 TEST(math, isnormal) {
86 ASSERT_TRUE(isnormal(123.0f));
87 ASSERT_TRUE(isnormal(123.0));
88 ASSERT_FALSE(isnormal(float_subnormal()));
89 ASSERT_FALSE(isnormal(double_subnormal()));
  /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
  /development/ndk/platforms/android-3/include/
math.h 113 #define isnormal(x) \ macro
  /development/ndk/platforms/android-9/include/
math.h 113 #define isnormal(x) \ macro
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.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);
  /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
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/
math.h 113 #define isnormal(x) \ macro
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/
math.h 113 #define isnormal(x) \ macro

Completed in 712 milliseconds

1 2 3