Lines Matching refs:rl
42 mp_limb_t rl;
65 rl = np[0];
66 rp[0] = rl;
76 rl = rp[0] + (rp[1] << GMP_NUMB_BITS);
79 if (rl != 0 && ns >= 0)
81 rl = divisor - rl;
82 rp[0] = rl & GMP_NUMB_MASK;
83 rp[1] = rl >> GMP_NUMB_BITS;
86 rn = 1 + (rl > GMP_NUMB_MAX); rn -= (rp[rn - 1] == 0);
91 rl = mpn_mod_1 (np, nn, (mp_limb_t) divisor);
92 if (rl == 0)
97 rl = divisor - rl;
101 return rl;