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

1 2 3 4

  /device/google/contexthub/lib/libm/
sf_fpclassify.c 17 return FP_ZERO;
  /external/mesa3d/src/mesa/main/
querymatrix.c 46 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
64 return FP_ZERO;
82 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
156 * valid floating point number. FP_ZERO and FP_NORMAL
162 case FP_ZERO:
  /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 87 case FP_ZERO:
hdtoa.c 137 case FP_ZERO:
234 case FP_ZERO:
  /external/vixl/src/vixl/
utils.cc 117 return FP_ZERO;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 347 #define FP_ZERO 0x4000
348 #define FP_SUBNORMAL (FP_NORMAL | FP_ZERO)
366 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
378 return FP_ZERO;
387 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
397 return FP_ZERO;
406 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
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)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
math.h 208 FP_ZERO,
209 # define FP_ZERO FP_ZERO
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
math.h 209 FP_ZERO,
210 # define FP_ZERO FP_ZERO
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 158 return (at != 0) ? FP_SUBNORMAL : FP_ZERO;
178 return t == 0 ? FP_ZERO : FP_NORMAL;
197 return FP_ZERO;
223 return FP_ZERO;
  /bionic/libm/include/
math.h 62 #define FP_ZERO 0x10
64 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
  /bionic/tests/
math_test.cpp 117 ASSERT_EQ(FP_ZERO, fpclassify(0.0f));
118 ASSERT_EQ(FP_ZERO, fpclassify(0.0));
119 ASSERT_EQ(FP_ZERO, fpclassify(0.0L));
181 ASSERT_EQ(FP_ZERO, __fpclassifyd(0.0));
189 ASSERT_EQ(FP_ZERO, __fpclassifyf(0.0f));
197 EXPECT_EQ(FP_ZERO, __fpclassifyl(0.0L));
    [all...]
  /external/mesa3d/src/mesa/x86/
x86_xform2.S 39 #define FP_ZERO 0
204 MOV_L( CONST(FP_ZERO), DST3 )
x86_xform3.S 39 #define FP_ZERO 0
x86_xform4.S 39 #define FP_ZERO 0
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 37 #define FP_ZERO 0
  /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/libxml2/
trionan.c 577 case FP_ZERO:
790 return "FP_ZERO";
  /external/v8/src/
conversions.cc 126 case FP_ZERO: return "0";
  /development/ndk/platforms/android-13/include/
math.h 95 #define FP_ZERO 0x10
  /development/ndk/platforms/android-18/include/
math.h 95 #define FP_ZERO 0x10
  /development/ndk/platforms/android-21/include/
math.h 84 #define FP_ZERO 0x10
  /development/ndk/platforms/android-3/include/
math.h 95 #define FP_ZERO 0x10
  /development/ndk/platforms/android-9/include/
math.h 95 #define FP_ZERO 0x10

Completed in 441 milliseconds

1 2 3 4