Convert a positive number to a double value.
Rounding is needed.
The rounding bit is 1 and the next bit to the left is 0
but some of dropped bits are 1s.
Convert a negative number to a double value.
The number's bit length is inside [63, 1024].
testDoubleValueNegativeInfinity1
public void testDoubleValueNegativeInfinity1()(Code)
Convert a negative number to a double value.
The number's bit length is greater than 1024.
testDoubleValueNegativeInfinity2
public void testDoubleValueNegativeInfinity2()(Code)
Convert a negative number to a double value.
The exponent is 1023 and the mantissa is all 0s.
The rounding bit is 0.
The result is Double.NEGATIVE_INFINITY.
testDoubleValuePosMantissaIsZero
public void testDoubleValuePosMantissaIsZero()(Code)
Convert a positive number to a double value.
The exponent is 1023 and the mantissa is all 0s
but the 54th bit (implicit) is 1.
Convert a positive number to a double value.
Rounding is needed.
The rounding bit is 1 and the next bit to the left is 0
but some of dropped bits are 1s.
Convert a positive number to a double value.
The number's bit length is inside [63, 1024].
testDoubleValuePositiveInfinity1
public void testDoubleValuePositiveInfinity1()(Code)
Convert a positive number to a double value.
The exponent is 1023 and the mantissa is all 1s.
The rounding bit is 1.
The result is Double.POSITIVE_INFINITY.
testDoubleValuePositiveInfinity2
public void testDoubleValuePositiveInfinity2()(Code)
Convert a positive number to a double value.
The number's bit length is greater than 1024.
Convert a positive number to a float value.
Rounding is needed.
The rounding bit is 1 and the next bit to the left is 0
but some of dropped bits are 1s.
Convert a negative number to a doufloatble value.
The number's bit length is inside [63, 1024].
testFloatValueNegativeInfinity1
public void testFloatValueNegativeInfinity1()(Code)
Convert a negative number to a float value.
The number's bit length is greater than 127.
testFloatValueNegativeInfinity2
public void testFloatValueNegativeInfinity2()(Code)
Convert a negative number to a float value.
The exponent is 1023 and the mantissa is all 0s.
The rounding bit is 0.
The result is Float.NEGATIVE_INFINITY.
testFloatValuePosMantissaIsZero
public void testFloatValuePosMantissaIsZero()(Code)
Convert a positive number to a float value.
The exponent is 1023 and the mantissa is all 0s
but the 54th bit (implicit) is 1.
Convert a positive number to a float value.
Rounding is needed.
The rounding bit is 1 and the next bit to the left is 0
but some of dropped bits are 1s.
Convert a positive number to a float value.
The number's bit length is inside [32, 127].
testFloatValuePositiveInfinity1
public void testFloatValuePositiveInfinity1()(Code)
Convert a positive number to a float value.
The exponent is 1023 and the mantissa is all 1s.
The rounding bit is 1.
The result is Float.POSITIVE_INFINITY.
testFloatValuePositiveInfinity2
public void testFloatValuePositiveInfinity2()(Code)
Convert a positive number to a float value.
The number's bit length is greater than 127.