Lines Matching defs:rl_high
171 mp_limb_t blimb_low, rl_high;
236 rl_high = 0;
268 umul_ppmm (rl_high, rl, rl, blimb << GMP_NAIL_BITS);
277 e, blimb, blimb_low, rl_high, rl));
279 /* Combine left-over rtwos_bits into rl_high:rl to be handled by the
281 - rl_high:rl mustn't be 1 (since then there's no final mul)
282 - rl_high mustn't overflow
283 - rl_high mustn't change to non-zero, since mul_1+lshift is
287 && ! (rl_high == 0 && rl == 1)
288 && (rl_high >> (GMP_NUMB_BITS-rtwos_bits)) == 0)
290 mp_limb_t new_rl_high = (rl_high << rtwos_bits)
292 if (! (rl_high == 0 && new_rl_high != 0))
294 rl_high = new_rl_high;
298 rl_high, rl));
405 rp[1] = rl_high;
406 rsize += (rl_high != 0);
472 if (rl_high != 0)
475 mult[1] = rl_high;