Lines Matching refs:meth
59 ec_GFp_nistp224_mod(const mp_int *a, mp_int *r, const GFMethod *meth) in ec_GFp_nistp224_mod() argument
84 MP_CHECKOK(mp_mod(a, &meth->irr, r)); in ec_GFp_nistp224_mod()
330 ec_GFp_nistp224_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) in ec_GFp_nistp224_sqr() argument
335 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth)); in ec_GFp_nistp224_sqr()
345 const GFMethod *meth) in ec_GFp_nistp224_mul() argument
350 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth)); in ec_GFp_nistp224_mul()
359 const GFMethod *meth) in ec_GFp_nistp224_div() argument
366 return mp_invmod(b, &meth->irr, r); in ec_GFp_nistp224_div()
371 MP_CHECKOK(mp_invmod(b, &meth->irr, &t)); in ec_GFp_nistp224_div()
373 MP_CHECKOK(ec_GFp_nistp224_mod(r, r, meth)); in ec_GFp_nistp224_div()
386 group->meth->field_mod = &ec_GFp_nistp224_mod; in ec_group_set_gfp224()
387 group->meth->field_mul = &ec_GFp_nistp224_mul; in ec_group_set_gfp224()
388 group->meth->field_sqr = &ec_GFp_nistp224_sqr; in ec_group_set_gfp224()
389 group->meth->field_div = &ec_GFp_nistp224_div; in ec_group_set_gfp224()