HomeSort by relevance Sort by last modified time
    Searched refs:significand (Results 51 - 75 of 119) sorted by null

1 23 4 5

  /external/chromium_org/v8/src/
strtod.cc 43 // (which has a 53bit significand) without loss of precision.
159 uint64_t significand = ReadUint64(buffer, &read_digits); local
161 *result = DiyFp(significand, 0);
164 // Round the significand.
166 significand++;
170 *result = DiyFp(significand, exponent);
316 // See if the double's significand changes if we add/subtract the error.
408 } else if ((Double(guess).Significand() & 1) == 0) {
cached-powers.cc 41 uint64_t significand; member in struct:v8::internal::CachedPower
161 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
173 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
  /external/v8/src/
strtod.cc 43 // (which has a 53bit significand) without loss of precision.
158 uint64_t significand = ReadUint64(buffer, &read_digits); local
160 *result = DiyFp(significand, 0);
163 // Round the significand.
165 significand++;
169 *result = DiyFp(significand, exponent);
316 // See if the double's significand changes if we add/subtract the error.
408 } else if ((Double(guess).Significand() & 1) == 0) {
cached-powers.cc 41 uint64_t significand; member in struct:v8::internal::CachedPower
161 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
173 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
cached-powers.cc 43 uint64_t significand; member in struct:WTF::double_conversion::CachedPower
173 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
185 *power = DiyFp(cached_power.significand, cached_power.binary_exponent);
  /bionic/libm/
fake_long_double.c 66 long double significandl(long double a1) { return significand(a1); }
  /external/guava/guava/src/com/google/common/math/
DoubleMath.java 167 long significand = getSignificand(x); local
168 BigInteger result = BigInteger.valueOf(significand).shiftLeft(exponent - SIGNIFICAND_BITS);
  /external/valgrind/main/include/vki/
vki-x86-linux.h 198 unsigned short significand[4]; member in struct:_vki_fpreg
203 unsigned short significand[4]; member in struct:_vki_fpxreg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 212 __MATHCALL (significand,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 212 __MATHCALL (significand,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 212 __MATHCALL (significand,, (_Mdouble_ __x));
  /bionic/tests/
math_test.cpp 939 TEST(math, significand) {
940 ASSERT_FLOAT_EQ(0.0, significand(0.0));
941 ASSERT_FLOAT_EQ(1.2, significand(1.2));
942 ASSERT_FLOAT_EQ(1.5375, significand(12.3));
  /development/ndk/platforms/android-3/include/
math.h 305 double significand(double);
  /development/ndk/platforms/android-9/include/
math.h 305 double significand(double);
  /external/llvm/include/llvm/ADT/
APFloat.h 90 /// signed exponent, and the significand as an array of integer parts. After
93 /// significand is set as an explicit integer bit. For denormals the most
96 /// significant bit of the significand set. The sign of zeroes and infinities
97 /// is significant; the exponent and significand of such numbers is not stored,
100 /// significand are deterministic, although not really meaningful, and preserved
105 /// by encoding Signaling NaNs with the first bit of its trailing significand as
464 /// \name Significand operations.
479 /// Return true if the significand excluding the integral bit is all ones.
481 /// Return true if the significand excluding the integral bit is all zeros.
554 /// The significand must be at least one bit wider than the target precision
558 } significand; member in class:llvm::APFloat
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
math.h 305 double significand(double);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
math.h 305 double significand(double);

Completed in 617 milliseconds

1 23 4 5