Searched refs:bigInt (Results 1 – 2 of 2) sorted by relevance
47 private transient BigInt bigInt; field in BigInteger94 BigInteger(BigInt bigInt) { in BigInteger() argument95 if (bigInt == null || !bigInt.hasNativeBignum()) { in BigInteger()98 setBigInt(bigInt); in BigInteger()102 BigInt bigInt = new BigInt(); in BigInteger() local103 bigInt.putULongInt(value, (sign < 0)); in BigInteger()104 setBigInt(bigInt); in BigInteger()216 BigInt bigInt = new BigInt(); in BigInteger() local217 bigInt.putDecString(value); in BigInteger()218 setBigInt(bigInt); in BigInteger()[all …]
2559 BigInteger bigInt = new BigInteger("123456789012345678901234567890"); in test_formatLjava_lang_String$Ljava_lang_Object_BigIntegerPaddingConversion() local2561 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()