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

12 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
sigcontext.h 22 unsigned short significand[4]; member in struct:_fpreg
27 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
sigcontext.h 21 unsigned short significand[4]; member in struct:_fpreg
26 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
sigcontext.h 21 unsigned short significand[4]; member in struct:_fpreg
26 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 21 unsigned short significand[4]; member in struct:_fpreg
26 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
sigcontext.h 21 unsigned short significand[4]; member in struct:_fpreg
26 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 21 unsigned short significand[4]; member in struct:_fpreg
26 unsigned short significand[4]; member in struct:_fpxreg
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 164 sign, exponent, flag, significand -- bit masks that give the meaning of the
184 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x007fffff);
203 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x000fffff);
239 static const uint64_t significand member in struct:boost::math::detail::fp_traits_non_native
263 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x000fffff);
299 static const uint64_t significand member in struct:boost::math::detail::fp_traits_non_native
326 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x00007fff);
370 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x000fffff);
415 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x00007fff);
451 BOOST_STATIC_CONSTANT(uint32_t, significand = 0x0000ffff)
    [all...]
  /external/compiler-rt/lib/
truncdfsf2.c 36 // significand field being set
145 const src_rep_t significand = (aRep & significandMask) | srcMinNormal; local
151 const bool sticky = significand << (srcBits - shift);
152 src_rep_t denormalizedSignificand = significand >> shift | sticky;
fp_lib.h 116 static inline int normalize(rep_t *significand) {
117 const int shift = rep_clz(*significand) - rep_clz(implicitBit);
118 *significand <<= shift;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 41 and all significand bits are 0, then the number is zero.
44 and at least one significand bit is 1, then the number is subnormal.
46 If all exponent bits are 1 and all significand bits are 0,
49 If all exponent bits are 1 and at least one significand bit is 1,
58 sign bit + exponent bits + significand bits.
61 sign bit + exponent bits + flag bit + significand bits.
69 but not always all the significand bits.
71 depending on whether all the significand bits are copied or not.
191 a &= traits::exponent | traits::flag | traits::significand;
192 BOOST_MATH_INSTRUMENT_VARIABLE((traits::exponent | traits::flag | traits::significand));
    [all...]
  /external/chromium_org/sandbox/linux/services/
android_i386_ucontext.h 18 unsigned short significand[4]; member in struct:_libc_fpreg
  /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
  /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
  /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
  /external/llvm/lib/Support/
APFloat.cpp 36 /* Assumed in hexadecimal significand parsing, and conversion to
53 /* Number of bits in the significand. This includes the integer
221 assert(end - begin != 1 && "Significand has no digits");
235 structure D. Exponent is appropriate if the significand is
236 treated as an integer, and normalizedExponent if the significand
273 assert((*p == 'e' || *p == 'E') && "Invalid character in significand");
274 assert(p != begin && "Significand has no digits");
275 assert((dot == end || p - begin != 1) && "Significand has no digits");
583 significand.parts = new integerPart[count];
590 delete [] significand.parts
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 319 uint64_t significand = Double(v).Significand(); local
321 // v = significand * 2^exponent (with significand a 53bit integer).
329 // At most kDoubleSignificandSize bits of the significand are non-zero.
335 // We know that v = significand * 2^exponent.
344 uint64_t dividend = significand;
347 // Let v = f * 2^e with f == significand and e == exponent.
371 significand <<= exponent;
372 FillDigits64(significand, buffer, length)
    [all...]
strtod.cc 44 // (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);
315 // See if the double's significand changes if we add/subtract the error.
407 } else if ((Double(guess).Significand() & 1) == 0) {
  /external/chromium_org/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...]
  /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...]
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
number_test.cpp 107 str.push_back(std::tr1::get<0>(GetParam())); // significand [0-9].
135 char significand = std::tr1::get<0>(GetParam()); local
136 if (significand != '\0')
137 str.push_back(significand);
  /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
  /external/chromium_org/third_party/WebKit/Source/wtf/
DecimalNumber.h 94 const char* significand() const { return m_significand; } // significand contains precision characters, is not null-terminated. function in class:WTF::DecimalNumber
  /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

Completed in 1026 milliseconds

12 3 4 5