Searched refs:floatBits (Results 1 – 1 of 1) sorted by relevance
2368 int floatBits = isNegative ? FloatConsts.SIGN_BIT_MASK : 0; in parseHexString() local2372 floatBits |= FloatConsts.EXP_BIT_MASK; in parseHexString()2380 …floatBits |= (((((int) exponent) + (FloatConsts.EXP_BIAS - 1))) << SINGLE_EXP_SHIFT) + (iValue >> … in parseHexString()2395 floatBits |= iValue >> 1; in parseHexString()2398 float fValue = Float.intBitsToFloat(floatBits); in parseHexString()