Searched refs:tmpX (Results 1 - 3 of 3) sorted by relevance

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_exptmod.c36 mp_int tmpG, tmpX; local
49 if ((err = mp_init(&tmpX)) != MP_OKAY) {
53 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
54 mp_clear_multi(&tmpG, &tmpX, NULL);
59 err = mp_exptmod(&tmpG, &tmpX, P, Y);
60 mp_clear_multi(&tmpG, &tmpX, NULL);
H A Dtommath.tex5021 the modular inverse of $G$ and $tmpX$ is assigned the absolute value of $X$. The algorithm will recuse with these new values with a positive
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c2542 mp_int tmpG, tmpX; local
2555 if ((err = mp_init(&tmpX)) != MP_OKAY) {
2559 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
2560 mp_clear_multi(&tmpG, &tmpX, NULL);
2565 err = mp_exptmod(&tmpG, &tmpX, P, Y);
2566 mp_clear_multi(&tmpG, &tmpX, NULL);

Completed in 78 milliseconds