Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java1276 final int bigIntExp = binexp - EXP_SHIFT + lowOrderZeros;
1291 if (bigIntExp >= 0) {
1292 B2 += bigIntExp;
1294 D2 -= bigIntExp;
1342 if ((bigIntNBits == 1) && (bigIntExp > -DoubleConsts.EXP_BIAS + 1)) {
1582 final int bigIntExp = binexp - SINGLE_EXP_SHIFT + lowOrderZeros; in floatValue() local
1597 if (bigIntExp >= 0) { in floatValue()
1598 B2 += bigIntExp; in floatValue()
1600 D2 -= bigIntExp; in floatValue()
1648 if ((bigIntNBits == 1) && (bigIntExp > -FloatConsts.EXP_BIAS + 1)) { in floatValue()