Lines Matching defs:tempx
90 mp_int lambda, temp, tempx, tempy;
94 MP_DIGITS(&tempx) = 0;
98 MP_CHECKOK(mp_init(&tempx, FLAG(px)));
117 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
119 field_div(&tempy, &tempx, &lambda, group->meth));
129 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
135 field_mul(&tempx, &temp, &tempx, group->meth));
137 field_add(&tempx, &group->curvea, &tempx, group->meth));
144 field_div(&tempx, &tempy, &lambda, group->meth));
147 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth));
148 MP_CHECKOK(group->meth->field_sub(&tempx, px, &tempx, group->meth));
149 MP_CHECKOK(group->meth->field_sub(&tempx, qx, &tempx, group->meth));
151 MP_CHECKOK(group->meth->field_sub(qx, &tempx, &tempy, group->meth));
155 MP_CHECKOK(mp_copy(&tempx, rx));
161 mp_clear(&tempx);