Home
last modified time | relevance | path

Searched refs:tab_u (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/libecc/src/curves/
H A Daff_pt_edwards.c630 fp tab_u[2]; in aff_pt_montgomery_to_edwards() local
631 fp_src_t tab_u_t[2] = { &tab_u[0], &tab_u[1] }; in aff_pt_montgomery_to_edwards()
636 tab_u[0].magic = tab_u[1].magic = WORD(0); in aff_pt_montgomery_to_edwards()
650 ret = fp_init(&tab_u[0], in_montgomery->crv->A.ctx); EG(ret, err); in aff_pt_montgomery_to_edwards()
651 ret = fp_init(&tab_u[1], in_montgomery->crv->A.ctx); EG(ret, err); in aff_pt_montgomery_to_edwards()
658 ret = fp_zero(&tab_u[0]); EG(ret, err); in aff_pt_montgomery_to_edwards()
659 ret = fp_copy(&tab_u[1], &(in_montgomery->u)); EG(ret, err); in aff_pt_montgomery_to_edwards()
691 fp_uninit(&tab_u[0]); in aff_pt_montgomery_to_edwards()
692 fp_uninit(&tab_u[1]); in aff_pt_montgomery_to_edwards()