Home | History | Annotate | Download | only in libtommath

Lines Matching defs:w1

27     mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2;
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
82 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */
109 if ((res = mp_mul(&tmp1, &tmp2, &w1)) != MP_OKAY) {
175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
183 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
198 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) {
209 if ((res = mp_sub(&w1, &tmp1, &w1)) != MP_OKAY) {
223 if ((res = mp_sub(&w2, &w1, &w2)) != MP_OKAY) {
230 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) {
238 if ((res = mp_div_3(&w1, &w1, NULL)) != MP_OKAY) {
247 if ((res = mp_lshd(&w1, 1*B)) != MP_OKAY) {
260 if ((res = mp_add(&w0, &w1, c)) != MP_OKAY) {
274 mp_clear_multi(&w0, &w1, &w2, &w3, &w4,