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

  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 25 import java.math.BigInteger;
691 if (number instanceof BigInteger) {
692 BigInteger bigInteger = (BigInteger) number;
693 char[] chars = (bigInteger.bitLength() < 64)
694 ? ndf.formatLong(bigInteger.longValue(), position)
695 : ndf.formatBigInteger(bigInteger, position);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 119 private static final BigInteger[] FIVE_POW;
125 private static final BigInteger[] TEN_POW;
163 * An array with the first <code>BigInteger</code> scaled by zero.
215 private BigInteger intVal;
347 setUnscaledValue(new BigInteger(unscaledBuffer.toString()));
498 intVal = new BigInteger(bi);
508 setUnscaledValue(Multiplication.multiplyByFivePow(BigInteger.valueOf(mantissa), scale));
546 public BigDecimal(BigInteger val) {
561 public BigDecimal(BigInteger val, MathContext mc) {
574 public BigDecimal(BigInteger unscaledVal, int scale)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 

Completed in 96 milliseconds