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

12 3 4 5 6 7

  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/asm/
sigcontext32.h 25 unsigned short significand[4]; member in struct:_fpreg
30 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/asm/
sigcontext32.h 25 unsigned short significand[4]; member in struct:_fpreg
30 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 25 unsigned short significand[4]; member in struct:_fpreg
30 unsigned short significand[4]; member in struct:_fpxreg
  /external/fio/lib/
ieee754.c 15 long long sign, exp, significand; local
43 // calculate the binary form (non-float) of the significand data
44 significand = fnorm * ((1LL << significandbits) + 0.5f);
50 return (sign << (bits - 1)) | (exp << (bits-expbits - 1)) | significand;
63 // pull the significand
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 41 static int NormalizedExponent(uint64_t significand, int exponent) {
42 ASSERT(significand != 0);
43 while ((significand & Double::kHiddenBit) == 0) {
44 significand = significand << 1;
95 uint64_t significand = Double(v).Significand(); local
96 bool is_even = (significand & 1) == 0;
98 int normalized_exponent = NormalizedExponent(significand, exponent);
374 // significand size). Then 2^(p-1) <= f < 2^p
452 uint64_t significand = Double(v).Significand(); local
504 uint64_t significand = Double(v).Significand(); local
    [all...]
fixed-dtoa.cc 317 uint64_t significand = Double(v).Significand(); local
319 // v = significand * 2^exponent (with significand a 53bit integer).
327 // At most kDoubleSignificandSize bits of the significand are non-zero.
333 // We know that v = significand * 2^exponent.
342 uint64_t dividend = significand;
345 // Let v = f * 2^e with f == significand and e == exponent.
369 significand <<= exponent;
370 FillDigits64(significand, buffer, length)
    [all...]
  /external/chromium_org/v8/src/
bignum-dtoa.cc 19 static int NormalizedExponent(uint64_t significand, int exponent) {
20 DCHECK(significand != 0);
21 while ((significand & Double::kHiddenBit) == 0) {
22 significand = significand << 1;
73 uint64_t significand = Double(v).Significand(); local
74 bool is_even = (significand & 1) == 0;
76 int normalized_exponent = NormalizedExponent(significand, exponent);
352 // significand size). Then 2^(p-1) <= f < 2^p
431 uint64_t significand = Double(v).Significand(); local
483 uint64_t significand = Double(v).Significand(); local
    [all...]
fixed-dtoa.cc 295 uint64_t significand = Double(v).Significand(); local
297 // v = significand * 2^exponent (with significand a 53bit integer).
305 // At most kDoubleSignificandSize bits of the significand are non-zero.
311 // We know that v = significand * 2^exponent.
320 uint64_t dividend = significand;
323 // Let v = f * 2^e with f == significand and e == exponent.
347 significand <<= exponent;
348 FillDigits64(significand, buffer, length)
    [all...]
  /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...]
  /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/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
sigcontext.h 57 unsigned short significand[4]; member in struct:_fpreg
62 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/sysroot/usr/include/asm/
sigcontext.h 57 unsigned short significand[4]; member in struct:_fpreg
62 unsigned short significand[4]; member in struct:_fpxreg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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/chromium_org/third_party/angle/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);
  /bionic/libc/kernel/uapi/asm-x86/asm/
sigcontext.h 39 unsigned short significand[4]; member in struct:_fpreg
44 unsigned short significand[4]; member in struct:_fpxreg
  /development/ndk/platforms/android-L/arch-x86/include/asm/
sigcontext.h 39 unsigned short significand[4]; member in struct:_fpreg
44 unsigned short significand[4]; member in struct:_fpxreg
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
sigcontext.h 39 unsigned short significand[4]; member in struct:_fpreg
44 unsigned short significand[4]; member in struct:_fpxreg
  /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

Completed in 530 milliseconds

12 3 4 5 6 7