Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/curves/
H A Daff_pt_edwards.c530 fp tab_x[2]; in aff_pt_edwards_to_montgomery() local
531 fp_src_t tab_x_t[2] = { &tab_x[0], &tab_x[1] }; in aff_pt_edwards_to_montgomery()
536 tab_x[0].magic = tab_x[1].magic = WORD(0); in aff_pt_edwards_to_montgomery()
551 ret = fp_init(&tab_x[0], in_edwards->crv->a.ctx); EG(ret, err); in aff_pt_edwards_to_montgomery()
552 ret = fp_init(&tab_x[1], in_edwards->crv->a.ctx); EG(ret, err); in aff_pt_edwards_to_montgomery()
565 ret = fp_one(&tab_x[0]); EG(ret, err); in aff_pt_edwards_to_montgomery()
566 ret = fp_copy(&tab_x[1], &(in_edwards->x)); EG(ret, err); in aff_pt_edwards_to_montgomery()
603 fp_uninit(&tab_x[0]); in aff_pt_edwards_to_montgomery()
604 fp_uninit(&tab_x[1]); in aff_pt_edwards_to_montgomery()