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

1 2 3 4

  /external/chromium_org/v8/src/
win32-math.h 56 int fpclassify(double x);
win32-math.cc 78 int fpclassify(double x) { function in namespace:std
conversions.cc 38 // STLPort doesn't import fpclassify into the std namespace.
39 using std::fpclassify;
74 switch (fpclassify(v)) {
  /external/v8/src/
win32-math.h 58 int fpclassify(double x);
win32-math.cc 79 int fpclassify(double x) { function
  /external/chromium_org/third_party/mesa/src/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.
  /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.
  /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; }))
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 106 _LIBCPP_ALWAYS_INLINE int fpclassify( double num ) 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));
  /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;
  /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)
  /development/ndk/platforms/android-3/include/
math.h 96 #define fpclassify(x) \ macro
  /development/ndk/platforms/android-9/include/
math.h 96 #define fpclassify(x) \ macro
  /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/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
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
math.h 96 #define fpclassify(x) \ macro
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
math.h 96 #define fpclassify(x) \ macro

Completed in 1267 milliseconds

1 2 3 4