HomeSort by relevance Sort by last modified time
    Searched defs:SIGNIFICAND_BITS (Results 1 - 6 of 6) sorted by null

  /external/guava/guava/src/com/google/common/math/
DoubleUtils.java 63 static final int SIGNIFICAND_BITS = 52;
80 int exponent = (int) ((bits & EXPONENT_MASK) >> SIGNIFICAND_BITS);
102 bits |= ((long) (newExponent + EXPONENT_BIAS)) << SIGNIFICAND_BITS;
148 * We need the top SIGNIFICAND_BITS + 1 bits, including the "implicit" one bit. To make
149 * rounding easier, we pick out the top SIGNIFICAND_BITS + 2 bits, so we have one to help us
150 * round up or down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and
151 * signifFloor the top SIGNIFICAND_BITS + 1.
153 * It helps to consider the real number signif = absX * 2^(SIGNIFICAND_BITS - exponent).
155 int shift = exponent - SIGNIFICAND_BITS - 1;
168 long bits = (long) ((exponent + EXPONENT_BIAS)) << SIGNIFICAND_BITS;
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
real.h 40 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
43 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
75 #define REAL_VALUE_TYPE_SIZE (SIGNIFICAND_BITS + 32)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 37 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
40 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
71 #define REAL_VALUE_TYPE_SIZE (SIGNIFICAND_BITS + 32)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 37 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
40 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
71 #define REAL_VALUE_TYPE_SIZE (SIGNIFICAND_BITS + 32)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 37 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
40 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
71 #define REAL_VALUE_TYPE_SIZE (SIGNIFICAND_BITS + 32)
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 316 milliseconds