/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
sigcontext.h | 30 unsigned short significand[4]; member in struct:_fpreg 36 unsigned short significand[4]; member in struct:_fpxreg
|
mathcalls.h | 212 __MATHCALL (significand,, (_Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
sigcontext.h | 30 unsigned short significand[4]; member in struct:_fpreg 36 unsigned short significand[4]; member in struct:_fpxreg
|
mathcalls.h | 212 __MATHCALL (significand,, (_Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
sigcontext.h | 30 unsigned short significand[4]; member in struct:_fpreg 36 unsigned short significand[4]; member in struct:_fpxreg
|
mathcalls.h | 212 __MATHCALL (significand,, (_Mdouble_ __x));
|
/external/llvm/lib/Support/ |
APFloat.cpp | 30 /* Assumed in hexadecimal significand parsing, and conversion to 47 /* Number of bits in the significand. This includes the integer 215 assert(end - begin != 1 && "Significand has no digits"); 229 structure D. Exponent is appropriate if the significand is 230 treated as an integer, and normalizedExponent if the significand 267 assert((*p == 'e' || *p == 'E') && "Invalid character in significand"); 268 assert(p != begin && "Significand has no digits"); 269 assert((dot == end || p - begin != 1) && "Significand has no digits"); 577 significand.parts = new integerPart[count]; 584 delete [] significand.parts [all...] |
/external/v8/src/ |
fixed-dtoa.cc | 318 uint64_t significand = Double(v).Significand(); local 320 // v = significand * 2^exponent (with significand a 53bit integer). 328 // At most kDoubleSignificandSize bits of the significand are non-zero. 334 // We know that v = significand * 2^exponent. 343 uint64_t dividend = significand; 346 // Let v = f * 2^e with f == significand and e == exponent. 370 significand <<= exponent; 371 FillDigits64(significand, buffer, length) [all...] |
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/compiler-rt/lib/ |
fp_lib.h | 116 static inline int normalize(rep_t *significand) { 117 const int shift = rep_clz(*significand) - rep_clz(implicitBit); 118 *significand <<= shift;
|
/external/guava/guava/src/com/google/common/math/ |
DoubleUtils.java | 51 // The mask for the significand, according to the {@link 132 long significand = Double.doubleToRawLongBits(x) & SIGNIFICAND_MASK; local 133 return Double.longBitsToDouble(significand | ONE_BITS); 171 * If signifRounded == 2^53, we'd need to set all of the significand bits to zero and add 1 to
|
DoubleMath.java | 167 long significand = getSignificand(x); local 168 BigInteger result = BigInteger.valueOf(significand).shiftLeft(exponent - SIGNIFICAND_BITS);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
ucontext.h | 96 unsigned short int significand[4]; member in struct:_libc_fpxreg 204 unsigned short int significand[4]; member in struct:_libc_fpreg
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
ucontext.h | 96 unsigned short int significand[4]; member in struct:_libc_fpxreg 204 unsigned short int significand[4]; member in struct:_libc_fpreg
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
ucontext.h | 96 unsigned short int significand[4]; member in struct:_libc_fpxreg 204 unsigned short int significand[4]; member in struct:_libc_fpreg
|
/external/webkit/Source/JavaScriptCore/wtf/ |
DecimalNumber.h | 92 const char* significand() const { return m_significand; } // significand contains precision characters, is not null-terminated. function in class:WTF::DecimalNumber
|
/bionic/libm/ |
fake_long_double.c | 66 long double significandl(long double a1) { return significand(a1); }
|
/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
|
/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 | 69 a 16-bit signed exponent, and the significand as an array of 72 not denormal the P-th bit of the significand is set as an explicit 76 of the significand set. The sign of zeroes and infinities is 77 significant; the exponent and significand of such numbers is not 80 exponent. For NaNs the sign and significand are deterministic, 380 /* Significand operations. */ 441 /* Significand - the fraction with an explicit integer bit. Must be 443 union Significand 447 } significand; member in class:llvm::APFloat
|
/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);
|