Home
last modified time | relevance | path

Searched refs:EXP_BIAS (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DMath.java653 + FloatConsts.EXP_BIAS) - biasedExp; in round()
702 + DoubleConsts.EXP_BIAS) - biasedExp; in round()
1822 (FloatConsts.SIGNIFICAND_WIDTH - 1)) - FloatConsts.EXP_BIAS; in getExponent()
1846 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); in getExponent()
2361 return Double.longBitsToDouble((((long)n + (long)DoubleConsts.EXP_BIAS) << in powerOfTwoD()
2371 return Float.intBitsToFloat(((n + FloatConsts.EXP_BIAS) << in powerOfTwoF()
/libcore/ojluni/src/main/java/sun/misc/
DFpUtils.java148 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); in getExponent()
161 (FloatConsts.SIGNIFICAND_WIDTH - 1)) - FloatConsts.EXP_BIAS; in getExponent()
169 return Double.longBitsToDouble((((long)n + (long)DoubleConsts.EXP_BIAS) << in powerOfTwoD()
179 return Float.intBitsToFloat(((n + FloatConsts.EXP_BIAS) << in powerOfTwoF()
DFloatingDecimal.java45 static final long EXP_ONE = ((long)DoubleConsts.EXP_BIAS)<<EXP_SHIFT; // exponent of 1.0
823 … int exponent = (int)((dBits & DoubleConsts.EXP_BIT_MASK) >> EXP_SHIFT) - DoubleConsts.EXP_BIAS;
1273 binexp -= DoubleConsts.EXP_BIAS;
1300 if (binexp <= -DoubleConsts.EXP_BIAS) {
1304 hulpbias = binexp + lowOrderZeros + DoubleConsts.EXP_BIAS;
1342 if ((bigIntNBits == 1) && (bigIntExp > -DoubleConsts.EXP_BIAS + 1)) {
1579 binexp -= FloatConsts.EXP_BIAS; in floatValue()
1606 if (binexp <= -FloatConsts.EXP_BIAS) { in floatValue()
1610 hulpbias = binexp + lowOrderZeros + FloatConsts.EXP_BIAS; in floatValue()
1648 if ((bigIntNBits == 1) && (bigIntExp > -FloatConsts.EXP_BIAS + 1)) { in floatValue()
[all …]
DDoubleConsts.java90 public static final int EXP_BIAS = 1023; field in DoubleConsts
DFloatConsts.java85 public static final int EXP_BIAS = 127; field in FloatConsts