Searched defs:highBit (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/native/
H A Dcbigint.cpp512 int32_t highBit; local
516 highBit = highestSetBit (arg + length);
517 if (highBit)
518 return highBit + 64 * length;
567 int32_t highBit; local
583 highBit = highestSetBit (arg);
584 if (highBit <= 53)
586 highBit = 53 - highBit;
587 mantissa = *arg << highBit;
[all...]

Completed in 49 milliseconds