/external/v8/src/ |
win32-math.h | 58 int fpclassify(double x);
|
win32-math.cc | 79 int fpclassify(double x) { function
|
/bionic/tests/ |
math_test.cpp | 44 TEST(math, fpclassify) { 45 ASSERT_EQ(FP_INFINITE, fpclassify(INFINITY)); 46 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VALF)); 47 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VAL)); 49 ASSERT_EQ(FP_NAN, fpclassify(nanf(""))); 50 ASSERT_EQ(FP_NAN, fpclassify(nan(""))); 52 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); 53 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)); 55 ASSERT_EQ(FP_SUBNORMAL, fpclassify(float_subnormal())); 56 ASSERT_EQ(FP_SUBNORMAL, fpclassify(double_subnormal())) [all...] |
/external/clang/test/CodeGen/ |
builtins.c | 42 P(fpclassify, (0, 1, 2, 3, 4, 1.0)); 43 P(fpclassify, (0, 1, 2, 3, 4, 1.0f)); 44 P(fpclassify, (0, 1, 2, 3, 4, 1.0l));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
math.h | 214 # define fpclassify(x) \ macro 217 # define fpclassify(x) \ macro 249 # define isnormal(x) (fpclassify (x) == FP_NORMAL) 251 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 460 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
math.h | 214 # define fpclassify(x) \ macro 217 # define fpclassify(x) \ macro 249 # define isnormal(x) (fpclassify (x) == FP_NORMAL) 251 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 460 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
math.h | 214 # define fpclassify(x) \ macro 217 # define fpclassify(x) \ macro 249 # define isnormal(x) (fpclassify (x) == FP_NORMAL) 251 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 460 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
|
/external/ceres-solver/internal/ceres/ |
array_utils.cc | 35 #include "ceres/fpclassify.h"
|
conjugate_gradients_solver.cc | 44 #include "ceres/fpclassify.h"
|
local_parameterization_test.cc | 32 #include "ceres/fpclassify.h"
|
/external/libxml2/ |
trionan.c | 565 #if defined(fpclassify) && defined(signbit) 567 * C99 defines fpclassify() and signbit() as a macros 570 switch (fpclassify(number)) { 619 * HP-UX 9.x and 10.x have an fpclassify() function, that is different 620 * from the C99 fpclassify() macro supported on HP-UX 11.x. 623 * same values as the HP-UX fpclassify() function. 632 # define TRIO_FPCLASSIFY(n) fpclassify(n)
|
/bionic/libm/ |
fpclassify.c | 27 * $FreeBSD: src/lib/libc/gen/fpclassify.c,v 1.2 2005/02/06 03:23:31 das Exp $
|
/external/ceres-solver/include/ceres/ |
fpclassify.h | 57 // On Android when using the GNU STL, the C++ fpclassify functions are not
|
/ndk/sources/cxx-stl/llvm-libc++/include/support/win32/ |
math_win32.h | 106 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) function
|
/external/qemu/fpu/ |
softfloat-native.h | 272 return fpclassify(a) == FP_INFINITE; 284 return fpclassify(a) == FP_ZERO; 394 return fpclassify(a) == FP_INFINITE; 406 return fpclassify(a) == FP_ZERO; 511 return fpclassify(a) == FP_INFINITE; 523 return fpclassify(a) == FP_ZERO;
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
cmath | 142 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; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
cmath | 468 #undef fpclassify 487 fpclassify(float __x) 492 fpclassify(double __x) 497 fpclassify(long double __x) 504 fpclassify(_Tp __x) 734 fpclassify(_Tp __f) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
cmath | 468 #undef fpclassify 487 fpclassify(float __x) 492 fpclassify(double __x) 497 fpclassify(long double __x) 504 fpclassify(_Tp __x) 734 fpclassify(_Tp __f) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
cmath | 468 #undef fpclassify 487 fpclassify(float __x) 492 fpclassify(double __x) 497 fpclassify(long double __x) 504 fpclassify(_Tp __x) 734 fpclassify(_Tp __f) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
cmath | 545 #undef fpclassify 564 fpclassify(float __x) 569 fpclassify(double __x) 574 fpclassify(long double __x) 581 fpclassify(_Tp __x) 811 fpclassify(_Tp __f) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
cmath | 479 #undef fpclassify 497 fpclassify(_Tp __f)
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
cmath | 479 #undef fpclassify 497 fpclassify(_Tp __f)
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
cmath | 479 #undef fpclassify 497 fpclassify(_Tp __f)
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
cmath | 479 #undef fpclassify 497 fpclassify(_Tp __f)
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
cmath | 479 #undef fpclassify 497 fpclassify(_Tp __f)
|