Home
last modified time | relevance | path

Searched refs:prime (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/security/spec/
DRSAOtherPrimeInfo.java55 private BigInteger prime; field in RSAOtherPrimeInfo
74 public RSAOtherPrimeInfo(BigInteger prime, in RSAOtherPrimeInfo() argument
77 if (prime == null) { in RSAOtherPrimeInfo()
89 this.prime = prime; in RSAOtherPrimeInfo()
100 return this.prime; in getPrime()
/libcore/support/src/test/java/tests/util/
DPair.java71 final int prime = 31; in hashCode() local
73 result = prime * result + ((mFirst == null) ? 0 : mFirst.hashCode()); in hashCode()
74 result = prime * result + ((mSecond == null) ? 0 : mSecond.hashCode()); in hashCode()
/libcore/support/src/test/java/libcore/tlswire/util/
DTlsProtocolVersion.java70 final int prime = 31; in hashCode() local
72 result = prime * result + major; in hashCode()
73 result = prime * result + minor; in hashCode()
/libcore/support/src/test/java/libcore/tlswire/handshake/
DCompressionMethod.java53 final int prime = 31; in hashCode() local
55 result = prime * result + type; in hashCode()
DCipherSuite.java448 final int prime = 31; in hashCode() local
450 result = prime * result + code; in hashCode()
/libcore/luni/src/main/java/libcore/util/
DZoneInfo.java646 final int prime = 31; in hashCode() local
648 result = prime * result + getID().hashCode(); in hashCode()
649 result = prime * result + Arrays.hashCode(mOffsets); in hashCode()
650 result = prime * result + Arrays.hashCode(mIsDsts); in hashCode()
651 result = prime * result + mRawOffset; in hashCode()
652 result = prime * result + Arrays.hashCode(mTransitions); in hashCode()
653 result = prime * result + Arrays.hashCode(mTypes); in hashCode()
654 result = prime * result + (mUseDst ? 1231 : 1237); in hashCode()
/libcore/luni/src/main/java/java/math/
DBigInteger.java177 BigInt prime = new BigInt(); in BigInteger() local
178 prime.putULongInt(candidate, false); in BigInteger()
179 setBigInt(prime); in BigInteger()