Lines Matching refs:rh
44 LL rl, rm, rn, rh, a0, b0; in mul64() local
53 rh.ll = (uint64_t)a0.l.high * b0.l.high; in mul64()
58 c = c + rm.l.high + rn.l.high + rh.l.low; in mul64()
59 rh.l.low = c; in mul64()
60 rh.l.high += (uint32_t)(c >> 32); in mul64()
63 *phigh = rh.ll; in mul64()
75 uint64_t rh; in muls64() local
77 mul64(plow, &rh, a, b); in muls64()
81 rh -= a; in muls64()
84 rh -= b; in muls64()
86 *phigh = rh; in muls64()