Lines Matching refs:rl
203 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local
209 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr()
219 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr()
228 return rl.ll; in mul_u64_u64_shr()
230 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr()
249 } u, rl, rh; in mul_u64_u32_div() local
252 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div()
253 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div()
256 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div()
259 do_div(rl.ll, divisor); in mul_u64_u32_div()
261 rl.l.high = rh.l.low; in mul_u64_u32_div()
262 return rl.ll; in mul_u64_u32_div()