Searched refs:EXP_BIAS (Results 1 – 4 of 4) sorted by relevance
85 public static final int EXP_BIAS = 127; field in FloatConsts
90 public static final int EXP_BIAS = 1023; field in DoubleConsts
680 + FloatConsts.EXP_BIAS) - biasedExp; in round()729 + DoubleConsts.EXP_BIAS) - biasedExp; in round()1975 (FloatConsts.SIGNIFICAND_WIDTH - 1)) - FloatConsts.EXP_BIAS; in getExponent()1999 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); in getExponent()2514 return Double.longBitsToDouble((((long)n + (long)DoubleConsts.EXP_BIAS) << in powerOfTwoD()2524 return Float.intBitsToFloat(((n + FloatConsts.EXP_BIAS) << in powerOfTwoF()
4222 int bits = ((exponent + FloatConsts.EXP_BIAS))4314 long bits = (long) ((exponent + DoubleConsts.EXP_BIAS))