Lines Matching refs:rh
45 LL rl, rm, rn, rh, a0, b0; in mul64() local
54 rh.ll = (uint64_t)a0.l.high * b0.l.high; in mul64()
59 c = c + rm.l.high + rn.l.high + rh.l.low; in mul64()
60 rh.l.low = c; in mul64()
61 rh.l.high += (uint32_t)(c >> 32); in mul64()
64 *phigh = rh.ll; in mul64()
76 uint64_t rh; in muls64() local
78 mul64(plow, &rh, a, b); in muls64()
82 rh -= a; in muls64()
85 rh -= b; in muls64()
87 *phigh = rh; in muls64()