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

1 2 3

  /device/google/contexthub/lib/libm/
sf_fpclassify.c 23 return FP_SUBNORMAL;
  /external/mesa3d/src/mesa/main/
querymatrix.c 46 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
61 return FP_SUBNORMAL;
82 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
160 case FP_SUBNORMAL:
  /bionic/libc/bionic/
fpclassify.cpp 52 return ((u.bits.dbl_fracl | u.bits.dbl_frach) == 0) ? FP_ZERO : FP_SUBNORMAL;
65 return (u.bits.sng_frac == 0) ? FP_ZERO : FP_SUBNORMAL;
130 return zero_frac(u.bits) ? FP_ZERO : FP_SUBNORMAL;
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ldtoa.c 90 case FP_SUBNORMAL:
hdtoa.c 140 case FP_SUBNORMAL:
154 /* FP_NORMAL or FP_SUBNORMAL */
237 case FP_SUBNORMAL:
251 /* FP_NORMAL or FP_SUBNORMAL */
  /external/vixl/src/vixl/
utils.cc 119 return FP_SUBNORMAL;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
math.h 210 FP_SUBNORMAL,
211 # define FP_SUBNORMAL FP_SUBNORMAL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
math.h 211 FP_SUBNORMAL,
212 # define FP_SUBNORMAL FP_SUBNORMAL
  /bionic/libm/include/
math.h 61 #define FP_SUBNORMAL 0x08
64 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 348 #define FP_SUBNORMAL (FP_NORMAL | FP_ZERO)
380 return FP_SUBNORMAL;
399 return FP_SUBNORMAL;
446 return (sw & (FP_NAN | FP_NORMAL | FP_INFINITE | FP_ZERO | FP_SUBNORMAL))
465 return (sw & (FP_NAN | FP_NORMAL | FP_INFINITE | FP_ZERO | FP_SUBNORMAL))
475 return (sw & (FP_NAN | FP_NORMAL | FP_INFINITE | FP_ZERO | FP_SUBNORMAL))
1012 #define islessgreater(x, y) ((__fp_unordered_compare(x, y) & FP_SUBNORMAL) == 0)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 158 return (at != 0) ? FP_SUBNORMAL : FP_ZERO;
199 return FP_SUBNORMAL;
225 return FP_SUBNORMAL;
  /bionic/tests/
math_test.cpp 113 ASSERT_EQ(FP_SUBNORMAL, fpclassify(float_subnormal()));
114 ASSERT_EQ(FP_SUBNORMAL, fpclassify(double_subnormal()));
115 ASSERT_EQ(FP_SUBNORMAL, fpclassify(ldouble_subnormal()));
180 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyd(double_subnormal()));
188 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyf(float_subnormal()));
196 EXPECT_EQ(FP_SUBNORMAL, __fpclassifyl(ldouble_subnormal()));
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 41 #define FP_SUBNORMAL 4
  /external/libxml2/
trionan.c 575 case FP_SUBNORMAL:
788 return "FP_SUBNORMAL";
  /development/ndk/platforms/android-13/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /development/ndk/platforms/android-18/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /development/ndk/platforms/android-21/include/
math.h 83 #define FP_SUBNORMAL 0x08
  /development/ndk/platforms/android-3/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /development/ndk/platforms/android-9/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/
math.h 94 #define FP_SUBNORMAL 0x08

Completed in 338 milliseconds

1 2 3