Lines Matching full:tmp1
275 BIGNUM *tmp1, *tmp2, *x, *y;
290 tmp1 = BN_CTX_get(ctx);
302 /* tmp1 := x^3 */
310 !group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) {
315 !BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) {
320 /* tmp1 := tmp1 + a*x */
324 !BN_mod_sub_quick(tmp1, tmp1, tmp2, &group->field)) {
340 if (!BN_mod_add_quick(tmp1, tmp1, tmp2, &group->field)) {
345 /* tmp1 := tmp1 + b */
348 !BN_mod_add_quick(tmp1, tmp1, tmp2, &group->field)) {
352 if (!BN_mod_add_quick(tmp1, tmp1, &group->b, &group->field)) {
357 if (!BN_mod_sqrt(y, tmp1, &group->field, ctx)) {