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