Home
last modified time | relevance | path

Searched refs:bigInt (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/math/
DBigInteger.java49 private transient BigInt bigInt; field in BigInteger
96 BigInteger(BigInt bigInt) { in BigInteger() argument
97 if (bigInt == null || !bigInt.hasNativeBignum()) { in BigInteger()
100 setBigInt(bigInt); in BigInteger()
104 BigInt bigInt = new BigInt(); in BigInteger() local
105 bigInt.putULongInt(value, (sign < 0)); in BigInteger()
106 setBigInt(bigInt); in BigInteger()
218 BigInt bigInt = new BigInt(); in BigInteger() local
219 bigInt.putDecString(value); in BigInteger()
220 setBigInt(bigInt); in BigInteger()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DFormatterTest.java2559 BigInteger bigInt = new BigInteger("123456789012345678901234567890"); in test_formatLjava_lang_String$Ljava_lang_Object_BigIntegerPaddingConversion() local
2561 f.format("%32d", bigInt); in test_formatLjava_lang_String$Ljava_lang_Object_BigIntegerPaddingConversion()
2565 f.format("%+32x", bigInt); in test_formatLjava_lang_String$Ljava_lang_Object_BigIntegerPaddingConversion()
2569 f.format("% 32o", bigInt); in test_formatLjava_lang_String$Ljava_lang_Object_BigIntegerPaddingConversion()