Home | History | Annotate | Download | only in pre_gen

Lines Matching full:norm

1661   int     res, n, t, i, norm, neg;
1707 norm = mp_count_bits(&y) % DIGIT_BIT;
1708 if (norm < (int)(DIGIT_BIT-1)) {
1709 norm = (DIGIT_BIT-1) - norm;
1710 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
1713 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
1717 norm = 0;
1827 mp_div_2d (&x, norm, &x, NULL);