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

/libcore/ojluni/src/main/java/java/security/spec/
H A DECPoint.java47 public static final ECPoint POINT_INFINITY = new ECPoint(); field in class:ECPoint
73 * Note: POINT_INFINITY has a null affine x-coordinate.
82 * Note: POINT_INFINITY has a null affine y-coordinate.
98 if (this == POINT_INFINITY) return false;
111 if (this == POINT_INFINITY) return 0;
H A DECPublicKeySpec.java53 * is point at infinity, i.e. ECPoint.POINT_INFINITY
62 if (w == ECPoint.POINT_INFINITY) {
63 throw new IllegalArgumentException("w is ECPoint.POINT_INFINITY");
/libcore/luni/src/test/java/tests/security/spec/
H A DECPointTest.java105 * Assertion: returns <code>null</code> for <code>ECPoint.POINT_INFINITY</code><br>
108 * <code>ECPoint.POINT_INFINITY</code>
111 assertNull(ECPoint.POINT_INFINITY.getAffineX());
133 * Assertion: returns <code>null</code> for <code>ECPoint.POINT_INFINITY</code><br>
136 * <code>ECPoint.POINT_INFINITY</code>
139 assertNull(ECPoint.POINT_INFINITY.getAffineY());
159 // test case 3: equal POINT_INFINITY object(s)
160 p1 = ECPoint.POINT_INFINITY;
161 p2 = ECPoint.POINT_INFINITY;
187 // test case 4: not equal - some point and POINT_INFINITY
[all...]

Completed in 274 milliseconds