Searched refs:BigInt (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/sun/security/util/BigInt/
H A DBigIntEqualsHashCode.java37 BigInt bi1 = new BigInt(12345678);
38 BigInt bi2 = new BigInt(12345678);
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java44 public final class BigInt { class
56 public BigInt(byte[] data) { places = data.clone(); } method in class:BigInt
62 public BigInt(BigInteger i) { method in class:BigInt
84 public BigInt(int i) { method in class:BigInt
113 throw new NumberFormatException("BigInt.toLong, too big");
162 * BigInt.
167 if (other instanceof BigInt)
168 return equals((BigInt) other);
175 * @param other the BigInt being compared with this one.
177 public boolean equals(BigInt othe
[all...]

Completed in 37 milliseconds