Lines Matching defs:meth
61 ec_GFp_nistp224_mod(const mp_int *a, mp_int *r, const GFMethod *meth)
86 MP_CHECKOK(mp_mod(a, &meth->irr, r));
320 ec_GFp_nistp224_sqr(const mp_int *a, mp_int *r, const GFMethod *meth)
325 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth));
335 const GFMethod *meth)
340 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth));
349 const GFMethod *meth)
356 return mp_invmod(b, &meth->irr, r);
361 MP_CHECKOK(mp_invmod(b, &meth->irr, &t));
363 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth));
376 group->meth->field_mod = &ec_GFp_nistp224_mod;
377 group->meth->field_mul = &ec_GFp_nistp224_mul;
378 group->meth->field_sqr = &ec_GFp_nistp224_sqr;
379 group->meth->field_div = &ec_GFp_nistp224_div;