Searched refs:ieeeBits (Results 1 – 1 of 1) sorted by relevance
1251 long ieeeBits = Double.doubleToRawLongBits(dValue); // IEEE-754 bits of double candidate1262 int binexp = (int) (ieeeBits >>> EXP_SHIFT);1263 long bigBbits = ieeeBits & DoubleConsts.SIGNIF_BIT_MASK;1371 if ((ieeeBits & 1) != 0) { // half ties to even1372 ieeeBits += overvalue ? -1 : 1; // nextDown or nextUp1380 ieeeBits += overvalue ? -1 : 1; // nextDown or nextUp1381 … if (ieeeBits == 0 || ieeeBits == DoubleConsts.EXP_BIT_MASK) { // 0.0 or Double.POSITIVE_INFINITY1389 ieeeBits |= DoubleConsts.SIGN_BIT_MASK;1391 return Double.longBitsToDouble(ieeeBits);1557 int ieeeBits = Float.floatToRawIntBits(fValue); // IEEE-754 bits of float candidate in floatValue() local[all …]