/external/v8/src/base/ |
qnx-math.h | 10 #undef fpclassify macro
|
/external/mesa3d/src/mesa/main/ |
querymatrix.c | 40 /* Oddly, the fpclassify() function doesn't exist in such a form 47 fpclassify(double x) function 78 /* fpclassify is available. */ 83 fpclassify(double x) function 153 switch (fpclassify(matrix[i])) { 199 * in case fpclassify() is returnings something unexpected.
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
ldtoa.c | 80 switch (fpclassify(*ld)) {
|
hdtoa.c | 133 switch (fpclassify(d)) { 230 switch (fpclassify(e)) {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
math.h | 218 # define fpclassify(x) \ macro 221 # define fpclassify(x) \ macro 253 # define isnormal(x) (fpclassify (x) == FP_NORMAL) 255 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 471 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
math.h | 219 # define fpclassify(x) \ macro 222 # define fpclassify(x) \ macro 254 # define isnormal(x) (fpclassify (x) == FP_NORMAL) 256 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 478 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
|
/external/libcxx/include/support/win32/ |
math_win32.h | 110 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
math_win32.h | 108 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) function
|
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
math_win32.h | 108 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) function
|
/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));
|
/bionic/tests/ |
math_test.cpp | 99 TEST(math, fpclassify) { 100 ASSERT_EQ(FP_INFINITE, fpclassify(INFINITY)); 101 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VALF)); 102 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VAL)); 103 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VALL)); 105 ASSERT_EQ(FP_NAN, fpclassify(nanf(""))); 106 ASSERT_EQ(FP_NAN, fpclassify(nan(""))); 107 ASSERT_EQ(FP_NAN, fpclassify(nanl(""))); 109 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); 110 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)) [all...] |
/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)
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/ |
fpclassify.hpp | 22 \file fpclassify.hpp 32 define the functions which call std::fpclassify etc if that function 105 return (BOOST_FPCLASSIFY_PREFIX fpclassify(t) == (int)FP_NAN); 125 return (std::fpclassify)(t); 248 inline int fpclassify BOOST_NO_MACRO_EXPAND(T t)
|
/external/v8/src/ |
conversions.cc | 22 // STLPort doesn't import fpclassify into the std namespace. 23 using std::fpclassify; 123 switch (fpclassify(v)) {
|
/bionic/benchmarks/ |
math_benchmark.cpp | 185 d += fpclassify(v);
|
/bionic/libm/include/ |
math.h | 63 #define fpclassify(x) \ macro
|
/external/libcxx/test/std/depr/depr.c.headers/ |
math_h.pass.cpp | 209 static_assert((std::is_same<decltype(fpclassify((float)0)), int>::value), ""); 210 static_assert((std::is_same<decltype(fpclassify((double)0)), int>::value), ""); 211 static_assert((std::is_same<decltype(fpclassify((long double)0)), int>::value), ""); 212 assert(fpclassify(-1.0) == FP_NORMAL);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
math_h.pass.cpp | 207 static_assert((std::is_same<decltype(fpclassify((float)0)), int>::value), ""); 208 static_assert((std::is_same<decltype(fpclassify((double)0)), int>::value), ""); 209 static_assert((std::is_same<decltype(fpclassify((long double)0)), int>::value), ""); 210 assert(fpclassify(-1.0) == FP_NORMAL);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
math.h | 339 Return values for fpclassify. 411 #define fpclassify(x) (sizeof (x) == sizeof (float) ? __fpclassifyf (x) \ macro 416 #define isfinite(x) ((fpclassify(x) & FP_NAN) == 0) 419 #define isinf(x) (fpclassify(x) == FP_INFINITE) 485 #define isnormal(x) (fpclassify(x) == FP_NORMAL)
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/ |
fp_traits.hpp | 47 #ifndef fpclassify 66 // aCC 6 appears to do "#define fpclassify fpclassify" which messes us up a bit!
|
/external/valgrind/none/tests/ppc64/ |
test_isa_2_07_part2.c | 838 if (fpclassify(src_dp) == FP_ZERO) 841 return !res_is_negative && (fpclassify(res_dp) == FP_ZERO); 847 return res_is_negative && (fpclassify(res_dp) == FP_ZERO); [all...] |
/external/valgrind/none/tests/ppc32/ |
test_isa_2_06_part3.c | 483 if (fpclassify(SRC) == FP_ZERO) 486 return !res_is_negative && (fpclassify(RES) == FP_ZERO); 492 return res_is_negative && (fpclassify(RES) == FP_ZERO); [all...] |
/external/libcxx/test/std/numerics/c.math/ |
cmath.pass.cpp | 59 Ambiguous fpclassify(Ambiguous){ return Ambiguous(); } function [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
cmath.pass.cpp | 456 #ifdef fpclassify 457 #error fpclassify defined 459 static_assert((std::is_same<decltype(std::fpclassify((float)0)), int>::value), ""); 460 static_assert((std::is_same<decltype(std::fpclassify((double)0)), int>::value), ""); 461 static_assert((std::is_same<decltype(std::fpclassify(0)), int>::value), ""); 462 static_assert((std::is_same<decltype(std::fpclassify((long double)0)), int>::value), ""); 463 assert(std::fpclassify(-1.0) == FP_NORMAL); [all...] |
/development/ndk/platforms/android-13/include/ |
math.h | 96 #define fpclassify(x) \ macro
|