Home | History | Annotate | Download | only in native

Lines Matching defs:point1

2617     const EC_POINT* point1 = reinterpret_cast<const EC_POINT*>(point1Ref);
2619 JNI_TRACE("EC_POINT_cmp(%p, %p, %p)", group, point1, point2);
2621 if (group == NULL || point1 == NULL || point2 == NULL) {
2622 JNI_TRACE("EC_POINT_cmp(%p, %p, %p) => group == null || point1 == null || point2 == null",
2623 group, point1, point2);
2624 jniThrowNullPointerException(env, "group == null || point1 == null || point2 == null");
2628 int ret = EC_POINT_cmp(group, point1, point2, (BN_CTX*)NULL);
2630 JNI_TRACE("ECP_GROUP_cmp(%p, %p) => %d", point1, point2, ret);