Lines Matching refs:meth

116 		MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth));
117 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
118 MP_CHECKOK(group->meth->
119 field_div(&tempy, &tempx, &lambda, group->meth));
129 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
131 if (group->meth->field_enc) {
132 MP_CHECKOK(group->meth->field_enc(&temp, &temp, group->meth));
134 MP_CHECKOK(group->meth->
135 field_mul(&tempx, &temp, &tempx, group->meth));
136 MP_CHECKOK(group->meth->
137 field_add(&tempx, &group->curvea, &tempx, group->meth));
139 if (group->meth->field_enc) {
140 MP_CHECKOK(group->meth->field_enc(&temp, &temp, group->meth));
142 MP_CHECKOK(group->meth->field_mul(qy, &temp, &tempy, group->meth));
143 MP_CHECKOK(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));
152 MP_CHECKOK(group->meth->
153 field_mul(&tempy, &lambda, &tempy, group->meth));
154 MP_CHECKOK(group->meth->field_sub(&tempy, qy, &tempy, group->meth));
181 MP_CHECKOK(group->meth->field_neg(qy, &nqy, group->meth));
238 MP_CHECKOK(group->meth->field_neg(&qy, &qy, group->meth));
322 if ((MP_SIGN(px) == MP_NEG) || (mp_cmp(px, &group->meth->irr) >= 0) ||
323 (MP_SIGN(py) == MP_NEG) || (mp_cmp(py, &group->meth->irr) >= 0)) {
328 if (group->meth->field_enc) {
329 group->meth->field_enc(px, &pxt, group->meth);
330 group->meth->field_enc(py, &pyt, group->meth);
336 MP_CHECKOK( group->meth->field_sqr(&pyt, &accl, group->meth) );
338 MP_CHECKOK( group->meth->field_sqr(&pxt, &tmp, group->meth) );
339 MP_CHECKOK( group->meth->field_mul(&pxt, &tmp, &accr, group->meth) );
340 MP_CHECKOK( group->meth->field_mul(&group->curvea, &pxt, &tmp, group->meth) );
341 MP_CHECKOK( group->meth->field_add(&tmp, &accr, &accr, group->meth) );
342 MP_CHECKOK( group->meth->field_add(&accr, &group->curveb, &accr, group->meth) );
344 MP_CHECKOK( group->meth->field_sub(&accl, &accr, &accr, group->meth) );