/external/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 | 39 _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/current/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))
|
/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
|
/bionic/benchmarks/ |
math_benchmark.cpp | 131 d += isnormal(v);
|
/bionic/libm/include/ |
math.h | 69 #define isnormal(x) __builtin_isnormal(x) macro
|
/external/libcxx/test/std/depr/depr.c.headers/ |
math_h.pass.cpp | 241 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), ""); 242 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), ""); 243 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), ""); 244 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);
|
/bionic/tests/ |
math_test.cpp | 149 TEST(math, isnormal) { 150 ASSERT_TRUE(isnormal(123.0f)); 151 ASSERT_TRUE(isnormal(123.0)); 152 ASSERT_TRUE(isnormal(123.0L)); 153 ASSERT_FALSE(isnormal(float_subnormal())); 154 ASSERT_FALSE(isnormal(double_subnormal())); 155 ASSERT_FALSE(isnormal(ldouble_subnormal())); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
math.h | 253 # define isnormal(x) (fpclassify (x) == FP_NORMAL) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
math.h | 254 # define isnormal(x) (fpclassify (x) == FP_NORMAL) macro
|
/external/libcxx/test/std/numerics/c.math/ |
cmath.pass.cpp | 61 Ambiguous isnormal(Ambiguous){ return Ambiguous(); } function [all...] |
/external/skia/fuzz/ |
fuzz.cpp | 420 if (!std::isnormal(f) && f != 0.0) {
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
intelligibility_utils.cc | 304 if (!std::isnormal(factor)) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
cmath.pass.cpp | 512 #ifdef isnormal 513 #error isnormal defined 515 static_assert((std::is_same<decltype(std::isnormal((float)0)), bool>::value), ""); 516 static_assert((std::is_same<decltype(std::isnormal((double)0)), bool>::value), ""); 517 static_assert((std::is_same<decltype(std::isnormal(0)), bool>::value), ""); 518 static_assert((std::is_same<decltype(std::isnormal((long double)0)), bool>::value), ""); 519 assert(std::isnormal(-1.0) == true); [all...] |
/development/ndk/platforms/android-13/include/ |
math.h | 113 #define isnormal(x) \ macro
|
/development/ndk/platforms/android-18/include/ |
math.h | 113 #define isnormal(x) \ macro
|
/development/ndk/platforms/android-21/include/ |
math.h | 102 #define isnormal(x) \ macro
|
/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
|