Home
last modified time | relevance | path

Searched refs:POINT_INFINITY (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/tests/security/spec/
DECPointTest.java111 assertNull(ECPoint.POINT_INFINITY.getAffineX()); in testGetAffineX02()
139 assertNull(ECPoint.POINT_INFINITY.getAffineY()); in testGetAffineY02()
160 p1 = ECPoint.POINT_INFINITY; in testEqualsObject01()
161 p2 = ECPoint.POINT_INFINITY; in testEqualsObject01()
188 p1 = ECPoint.POINT_INFINITY; in testEqualsObject02()
213 hc = ECPoint.POINT_INFINITY.hashCode(); in testHashCode01()
214 assertTrue(hc == ECPoint.POINT_INFINITY.hashCode() && in testHashCode01()
215 hc == ECPoint.POINT_INFINITY.hashCode() && in testHashCode01()
216 hc == ECPoint.POINT_INFINITY.hashCode() && in testHashCode01()
217 hc == ECPoint.POINT_INFINITY.hashCode() && in testHashCode01()
[all …]
/libcore/ojluni/src/main/java/java/security/spec/
DECPoint.java47 public static final ECPoint POINT_INFINITY = new ECPoint(); field in ECPoint
98 if (this == POINT_INFINITY) return false; in equals()
111 if (this == POINT_INFINITY) return 0; in hashCode()
DECPublicKeySpec.java62 if (w == ECPoint.POINT_INFINITY) { in ECPublicKeySpec()