HomeSort by relevance Sort by last modified time
    Searched refs:tmp_point (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/ecdsa/
ecdsa.c 231 EC_POINT *tmp_point = NULL; local
257 tmp_point = EC_POINT_new(group);
258 if (tmp_point == NULL) {
301 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) {
305 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp_point, X, NULL, ctx)) {
347 if (tmp_point != NULL)
348 EC_POINT_free(tmp_point);
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 97 EC_POINT *tmp_point=NULL; local
127 if ((tmp_point = EC_POINT_new(group)) == NULL)
176 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
184 tmp_point, X, NULL, ctx))
194 tmp_point, X, NULL, ctx))
234 if (tmp_point != NULL)
235 EC_POINT_free(tmp_point);
  /external/chromium_org/third_party/boringssl/src/crypto/ec/
wnaf.c 679 EC_POINT *tmp_point = NULL, *base = NULL, **var; local
757 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group))) {
769 if (!EC_POINT_dbl(group, tmp_point, base, ctx))
777 if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx))
790 if (!EC_POINT_dbl(group, base, tmp_point, ctx))
829 if (tmp_point)
830 EC_POINT_free(tmp_point);
  /external/openssl/crypto/ec/
ec_mult.c 768 EC_POINT *tmp_point = NULL, *base = NULL, **var; local
846 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group)))
860 if (!EC_POINT_dbl(group, tmp_point, base, ctx))
869 if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx))
884 if (!EC_POINT_dbl(group, base, tmp_point, ctx))
926 if (tmp_point)
927 EC_POINT_free(tmp_point);

Completed in 1104 milliseconds