Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Dcbigint.cpp372 int32_t highBit; in highestSetBitHighPrecision() local
376 highBit = highestSetBit (arg + length); in highestSetBitHighPrecision()
377 if (highBit) in highestSetBitHighPrecision()
378 return highBit + 64 * length; in highestSetBitHighPrecision()
429 int32_t highBit; in toDoubleHighPrecision() local
445 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 …]