Searched defs:TEN (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/security/spec/
H A DECCBasic.java38 private static final BigInteger TEN = BigInteger.TEN; field in class:ECCBasic
39 private static final ECFieldFp FP = new ECFieldFp(TEN);
49 (new ECFieldFp(TEN), ONE, ONE);
50 private static final ECPoint POINT = new ECPoint(ONE, TEN);
58 (TEN, PARAMS);
76 if (TEN.equals(FP.getP()) == false) {
79 if (FP.getFieldSize() != TEN.bitLength()) {
234 new ECPoint(null, TEN);
249 if (!(TEN
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java295 new BigDecimal(BigInteger.TEN, 10, 0, 2),
344 public static final BigDecimal TEN = field in class:BigDecimal
3403 pows[i] = pows[i - 1].multiply(BigInteger.TEN);
3656 while ( intVal.compareMagnitude(BigInteger.TEN) >= 0 &&
3660 qr = intVal.divideAndRemainder(BigInteger.TEN);
H A DBigInteger.java1032 public static final BigInteger TEN = valueOf(10); field in class:BigInteger

Completed in 50 milliseconds