Searched refs:SIGNIFICAND_WIDTH (Results 1 – 7 of 7) sorted by relevance
678 >> (FloatConsts.SIGNIFICAND_WIDTH - 1); in round()679 int shift = (FloatConsts.SIGNIFICAND_WIDTH - 2 in round()727 >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); in round()728 long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 in round()1606 exp = exp - (DoubleConsts.SIGNIFICAND_WIDTH-1); in ulp()1615 (exp - (DoubleConsts.MIN_EXPONENT - (DoubleConsts.SIGNIFICAND_WIDTH-1)) )); in ulp()1657 exp = exp - (FloatConsts.SIGNIFICAND_WIDTH-1); in ulp()1666 (exp - (FloatConsts.MIN_EXPONENT - (FloatConsts.SIGNIFICAND_WIDTH-1)) )); in ulp()1975 (FloatConsts.SIGNIFICAND_WIDTH - 1)) - FloatConsts.EXP_BIAS; in getExponent()1999 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); in getExponent()[all …]
62 public static final int SIGNIFICAND_WIDTH = 53; field in DoubleConsts85 (SIGNIFICAND_WIDTH - 1);
58 public static final int SIGNIFICAND_WIDTH = 24; field in FloatConsts80 (SIGNIFICAND_WIDTH - 1);
375 (1L << (DoubleConsts.SIGNIFICAND_WIDTH - 1))) { in ilogb()381 DoubleConsts.MIN_EXPONENT - (DoubleConsts.SIGNIFICAND_WIDTH-1) && in ilogb()445 (1 << (FloatConsts.SIGNIFICAND_WIDTH - 1))) { in ilogb()451 FloatConsts.MIN_EXPONENT - (FloatConsts.SIGNIFICAND_WIDTH-1) && in ilogb()
43 static final int EXP_SHIFT = DoubleConsts.SIGNIFICAND_WIDTH - 1;54 static final int SINGLE_EXP_SHIFT = FloatConsts.SIGNIFICAND_WIDTH - 1;2374 … int threshShift = DoubleConsts.SIGNIFICAND_WIDTH - FloatConsts.SIGNIFICAND_WIDTH - 1; in parseHexString()2387 …int threshShift = (int) ((DoubleConsts.SIGNIFICAND_WIDTH - 2 + FloatConsts.MIN_SUB_EXPONENT) - exp… in parseHexString()2388 … assert threshShift >= DoubleConsts.SIGNIFICAND_WIDTH - FloatConsts.SIGNIFICAND_WIDTH; in parseHexString()2389 assert threshShift < DoubleConsts.SIGNIFICAND_WIDTH; in parseHexString()2421 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) in parseHexString()2468 (DoubleConsts.SIGNIFICAND_WIDTH - 1)) in parseHexString()
4191 int shift = exponent - FloatConsts.SIGNIFICAND_WIDTH;4223 << (FloatConsts.SIGNIFICAND_WIDTH - 1);4275 int shift = exponent - DoubleConsts.SIGNIFICAND_WIDTH;4315 << (DoubleConsts.SIGNIFICAND_WIDTH - 1);
3567 = DoubleConsts.SIGNIFICAND_WIDTH - precision;3568 assert(shiftDistance >= 1 && shiftDistance < DoubleConsts.SIGNIFICAND_WIDTH);