Home | History | Annotate | Download | only in tls

Lines Matching full:norm

1695   int     res, n, t, i, norm, neg;
1741 norm = mp_count_bits(&y) % DIGIT_BIT;
1742 if (norm < (int)(DIGIT_BIT-1)) {
1743 norm = (DIGIT_BIT-1) - norm;
1744 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
1747 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
1751 norm = 0;
1861 mp_div_2d (&x, norm, &x, NULL);