Searched refs:toBigInteger (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DSignedMutableBigInteger.java132 return this.toBigInteger(sign).toString();
H A DBigInteger.java1343 return q.toBigInteger(this.signum == val.signum ? 1 : -1);
1363 result[0] = q.toBigInteger(this.signum == val.signum ? 1 : -1);
1364 result[1] = r.toBigInteger(this.signum);
1381 return a.divide(b, q).toBigInteger(this.signum);
1437 return result.toBigInteger(1);
2043 return result.toBigInteger(1);
2640 BigInteger q2 = q.toBigInteger(tmp.signum * d.signum);
2641 BigInteger r2 = r.toBigInteger(tmp.signum * d.signum);
H A DBigDecimal.java2923 public BigInteger toBigInteger() { method in class:BigDecimal
2962 toBigInteger().longValue();
3030 toBigInteger().intValue();
H A DMutableBigInteger.java151 BigInteger toBigInteger(int sign) { method in class:MutableBigInteger
431 BigInteger b = toBigInteger(1);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java778 if (seconds != null && seconds.toBigInteger().compareTo(maxintAsBigInteger) == 1) {
848 rhsSeconds = rhsSecondsAsBigDecimal.toBigInteger();
1563 toBigInteger(buf[0], null == years),
1564 toBigInteger(buf[1], null == months),
1565 toBigInteger(buf[2], null == days),
1566 toBigInteger(buf[3], null == hours),
1567 toBigInteger(buf[4], null == minutes),
1605 private static BigInteger toBigInteger( method in class:DurationImpl
1711 toBigInteger(sanitize(buf[0], s),
1713 toBigInteger(sanitiz
[all...]
H A DXMLGregorianCalendarImpl.java2063 new BigDecimal(temp.subtract(BigInteger.ONE)).divide(new BigDecimal(TWELVE), BigDecimal.ROUND_FLOOR).toBigInteger();
2101 new BigDecimal(new BigDecimal(tempBD.toBigInteger()).divide(DECIMAL_SIXTY, BigDecimal.ROUND_FLOOR).toBigInteger());
2104 carry = fQuotient.toBigInteger();
2133 carry = new BigDecimal(temp).divide(DECIMAL_SIXTY, BigDecimal.ROUND_FLOOR).toBigInteger();
2149 carry = new BigDecimal(temp).divide(new BigDecimal(TWENTY_FOUR), BigDecimal.ROUND_FLOOR).toBigInteger();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java132 public BigInteger toBigInteger() method in class:BigInt
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DHighPrecisionJScrollBar.java290 if (down) return ib.multiply(getScaleFactor()).toBigInteger();
291 else return ib.divide(getScaleFactor(), BigDecimal.ROUND_DOWN).toBigInteger();
/openjdk7/jdk/test/java/math/BigDecimal/
H A DDivideTests.java70 BigInteger divisorIntvalue = divisor.scaleByPowerOfTen(divisor.scale()).toBigInteger().abs();
71 BigInteger dividendIntvalue = dividend.scaleByPowerOfTen(dividend.scale()).toBigInteger().abs();

Completed in 858 milliseconds