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

1 2 3 4 5

  /external/chromium_org/v8/src/base/
qnx-math.h 10 #undef fpclassify macro
win32-math.h 35 int fpclassify(double x);
win32-math.cc 53 int fpclassify(double x) { function in namespace:std
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
querymatrix.c 41 /* Oddly, the fpclassify() function doesn't exist in such a form
48 fpclassify(double x) function
80 /* fpclassify is available. */
85 fpclassify(double x) function
155 switch (fpclassify(matrix[i])) {
201 * in case fpclassify() is returnings something unexpected.
  /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/benchmarks/
math_benchmark.cpp 167 d += fpclassify(v);
180 d += fpclassify(v);
193 d += fpclassify(v);
206 d += fpclassify(v);
  /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.6/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.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; }))
  /bionic/tests/
math_test.cpp 95 TEST(math, fpclassify) {
96 ASSERT_EQ(FP_INFINITE, fpclassify(INFINITY));
97 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VALF));
98 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VAL));
99 ASSERT_EQ(FP_INFINITE, fpclassify(HUGE_VALL));
101 ASSERT_EQ(FP_NAN, fpclassify(nanf("")));
102 ASSERT_EQ(FP_NAN, fpclassify(nan("")));
103 ASSERT_EQ(FP_NAN, fpclassify(nanl("")));
105 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f));
106 ASSERT_EQ(FP_NORMAL, fpclassify(1.0))
    [all...]
  /external/libcxx/include/support/win32/
math_win32.h 108 _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/9/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));
  /external/chromium_org/third_party/libxml/src/
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)
  /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/chromium_org/v8/src/
conversions.cc 21 // STLPort doesn't import fpclassify into the std namespace.
22 using std::fpclassify;
122 switch (fpclassify(v)) {
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.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);
  /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)
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
math.h 96 #define fpclassify(x) \ macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
math.h 96 #define fpclassify(x) \ macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
math.h 96 #define fpclassify(x) \ macro

Completed in 1145 milliseconds

1 2 3 4 5