Searched refs:highBit (Results 1 – 1 of 1) sorted by relevance
372 int32_t highBit; in highestSetBitHighPrecision() local376 highBit = highestSetBit (arg + length); in highestSetBitHighPrecision()377 if (highBit) in highestSetBitHighPrecision()378 return highBit + 64 * length; in highestSetBitHighPrecision()429 int32_t highBit; in toDoubleHighPrecision() local445 highBit = highestSetBit (arg); in toDoubleHighPrecision()446 if (highBit <= 53) in toDoubleHighPrecision()448 highBit = 53 - highBit; in toDoubleHighPrecision()449 mantissa = *arg << highBit; in toDoubleHighPrecision()451 CREATE_DOUBLE_BITS (mantissa, -highBit); in toDoubleHighPrecision()[all …]