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

/libcore/luni/src/main/java/java/lang/
H A DHexStringParser.java71 private long mantissa; field in class:HexStringParser
120 return sign | exponent | mantissa;
149 * Parses the mantissa field.
180 mantissa = Long.parseLong(significand, HEX_RADIX);
192 mantissa = 0;
197 mantissa = 0;
218 mantissa = mantissa & MANTISSA_MASK;
223 desiredWidth += (int)exponent;//lends bit from mantissa to exponent
227 mantissa
[all...]
/libcore/luni/src/main/native/
H A Dcbigint.cpp572 uint64_t mantissa, test64; local
591 mantissa = *arg << highBit;
593 CREATE_DOUBLE_BITS (mantissa, -highBit);
598 mantissa = *arg >> highBit;
600 CREATE_DOUBLE_BITS (mantissa, highBit);
604 if (test > 0x400 || ((test == 0x400) && (mantissa & 1)))
616 mantissa =
622 mantissa = arg[length];
625 CREATE_DOUBLE_BITS (mantissa, length * 64 - highBit);
629 if (test64 > SIGN_MASK || ((test64 == SIGN_MASK) && (mantissa
[all...]

Completed in 715 milliseconds