Searched refs:tmp_Z (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dsimple.c1198 BIGNUM *tmp, *tmp_Z; local
1216 tmp_Z = BN_CTX_get(ctx);
1217 if (tmp == NULL || tmp_Z == NULL) {
1290 /* Set tmp_Z to the inverse of points[i]->Z (as product
1292 if (!group->meth->field_mul(group, tmp_Z, prod_Z[i - 1], tmp, ctx) ||
1296 !BN_copy(&points[i]->Z, tmp_Z)) {
/external/openssl/crypto/ec/
H A Decp_smpl.c1185 BIGNUM *tmp, *tmp_Z; local
1202 tmp_Z = BN_CTX_get(ctx);
1203 if (tmp == NULL || tmp_Z == NULL) goto err;
1267 /* Set tmp_Z to the inverse of points[i]->Z (as product
1269 if (!group->meth->field_mul(group, tmp_Z, prod_Z[i - 1], tmp, ctx)) goto err;
1273 if (!BN_copy(&points[i]->Z, tmp_Z)) goto err;

Completed in 319 milliseconds