(double d)
| 62 | */ |
| 63 | static final long IMPLICIT_BIT = SIGNIFICAND_MASK + 1; |
| 64 | static long getSignificand(double d) { |
| 65 | checkArgument(isFinite(d), "not a normal value"); |
| 66 | int exponent = getExponent(d); |
| 67 | long bits = doubleToRawLongBits(d); |
| 68 | bits &= SIGNIFICAND_MASK; |
| 69 | return (exponent == MIN_EXPONENT - 1) ? bits << 1 : bits | IMPLICIT_BIT; |
| 70 | } |
| 71 | |
| 72 | |
| 73 | static boolean isFinite(double d) { |
no test coverage detected