HomeSort by relevance Sort by last modified time
    Searched refs:bigInteger (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 25 import java.math.BigInteger;
703 if (number instanceof BigInteger) {
704 BigInteger bigInteger = (BigInteger) number;
705 char[] chars = (bigInteger.bitLength() < 64)
706 ? dform.formatLong(bigInteger.longValue(), position)
707 : dform.formatBigInteger(bigInteger, position);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 39 * BigInteger.
125 private static final BigInteger[] FIVE_POW;
131 private static final BigInteger[] TEN_POW;
169 * An array with the first <code>BigInteger</code> scaled by zero.
221 private BigInteger intVal;
353 setUnscaledValue(new BigInteger(unscaledBuffer.toString()));
514 intVal = new BigInteger(bi);
524 setUnscaledValue(Multiplication.multiplyByFivePow(BigInteger.valueOf(mantissa), scale));
563 * {@code BigInteger} value to be converted to a {@code
566 public BigDecimal(BigInteger val)
    [all...]

Completed in 185 milliseconds