Home | History | Annotate | Download | only in libtommath

Lines Matching refs:w3

22     mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2;
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
77 /* w3 = (a0 + 2(a1 + 2a2))**2 */
91 if ((res = mp_sqr(&tmp1, &w3)) != MP_OKAY) {
123 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) {
131 if ((res = mp_div_2(&w3, &w3)) != MP_OKAY) {
146 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) {
160 if ((res = mp_sub(&w3, &tmp1, &w3)) != MP_OKAY) {
170 if ((res = mp_sub(&w2, &w3, &w2)) != MP_OKAY) {
178 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) {
186 if ((res = mp_div_3(&w3, &w3, NULL)) != MP_OKAY) {
197 if ((res = mp_lshd(&w3, 3*B)) != MP_OKAY) {
207 if ((res = mp_add(&w2, &w3, &tmp1)) != MP_OKAY) {
218 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL);