/libcore/benchmarks/src/benchmarks/ |
D | BigIntegerBenchmark.java | 54 BigInteger big = BigInteger.TEN.pow(prec).shiftLeft(30).add(BigInteger.ONE); in inner() 78 BigInteger scaledOne = BigInteger.TEN.pow(prec); in harmonic1000() 140 BigInteger scaledOne = BigInteger.TEN.pow(prec); in eApprox() 165 BigInteger odd1 = BigInteger.TEN.pow(len / 2).add(BigInteger.ONE); in repeatModPow() 166 BigInteger odd2 = BigInteger.TEN.pow(len / 2).add(BigInteger.valueOf(17)); in repeatModPow() 168 BigInteger exponent = BigInteger.TEN.pow(len / 2 - 1); in repeatModPow() 169 BigInteger base = BigInteger.TEN.pow(len / 4); in repeatModPow() 193 BigInteger odd1 = BigInteger.TEN.pow(len / 2).add(BigInteger.ONE); in repeatModInverse() 194 BigInteger odd2 = BigInteger.TEN.pow(len / 2).add(BigInteger.valueOf(17)); in repeatModInverse()
|
/libcore/luni/src/test/java/libcore/java/math/ |
D | BigIntegerTest.java | 218 try_gcd_variants(BigInteger.TEN, two, two); in test_gcd() 219 try_gcd_variants(BigInteger.TEN, BigInteger.TEN, BigInteger.TEN); in test_gcd() 220 try_gcd_variants(BigInteger.TEN, BigInteger.ZERO, BigInteger.TEN); in test_gcd()
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
D | DSAParamsTest.java | 27 private final BigInteger q = BigInteger.TEN;
|
D | DSAKeyPairGeneratorTest.java | 33 private final BigInteger q = BigInteger.TEN;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | FormatterTest.java | 3626 { BigDecimal.TEN, "%e", "1.000000e+01" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3627 { BigDecimal.TEN, "%#.0e", "1.e+01" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3628 { BigDecimal.TEN, "%# 9.8e", " 1.00000000e+01" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3629 { BigDecimal.TEN, "%#+0(8.4e", "+1.0000e+01" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3630 { BigDecimal.TEN, "%-+17.6e", "+1.000000e+01 " }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3631 { BigDecimal.TEN, "% 0(20e", " 00000001.000000e+01" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionE() 3789 { BigDecimal.TEN, "%f", "10.000000" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionF() 3790 { BigDecimal.TEN, "%#.3f", "10.000" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionF() 3791 { BigDecimal.TEN, "%#,5f", "10.000000" }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionF() 3792 { BigDecimal.TEN, "%- #(12.0f", " 10. " }, in test_formatLjava_lang_String$Ljava_lang_Object_BigDecimalConversionF() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
D | BigDecimalConstructorsTest.java | 51 assertEquals("incorrect string value", oneS, BigDecimal.TEN.toString()); in testFieldTEN() 52 assertEquals("incorrect double value", oneD, BigDecimal.TEN.doubleValue(), 0); in testFieldTEN()
|
D | BigDecimalCompareTest.java | 508 BigDecimal testInstance = BigDecimal.TEN.multiply(new BigDecimal("0.1")); in testApproxPrecision()
|
/libcore/ojluni/src/main/java/java/math/ |
D | BigDecimal.java | 297 new BigDecimal(BigInteger.TEN, 10, 0, 2), 346 public static final BigDecimal TEN = field in BigDecimal 3574 return BigInteger.TEN.pow(n); in bigTenToThe() 3597 pows[i] = pows[i - 1].multiply(BigInteger.TEN); in expandBigIntegerTenPowers() 4400 while (intVal.compareMagnitude(BigInteger.TEN) >= 0 in createAndStripZerosToMatchScale() 4404 qr = intVal.divideAndRemainder(BigInteger.TEN); in createAndStripZerosToMatchScale()
|
D | BigInteger.java | 1226 @NonNull public static final BigInteger TEN = valueOf(10);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | AlgorithmParametersTest.java | 598 BigInteger q = BigInteger.TEN; in testDSAProvider()
|
/libcore/ojluni/src/main/java/java/time/format/ |
D | DateTimeFormatterBuilder.java | 2676 totalBig = totalBig.multiply(BigInteger.TEN).add(BigInteger.valueOf(digit)); in parse() 2719 totalBig = totalBig.divide(BigInteger.TEN); in parse()
|
/libcore/api/ |
D | current.txt | 4763 field public static final java.math.BigDecimal TEN; 4820 field @NonNull public static final java.math.BigInteger TEN;
|