Lines Matching defs:high
74 * uv = (2^2n + 2^n) (u1 v1) + [u1v1 = high]
94 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
98 * (2^n)(high + mid + low) + low
100 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor
111 u_int high, mid, udiff, vdiff;
143 * any upper bits in high and mid, so we can use native
158 high = u1 * v1;
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
189 * splits into high and low ints as HHALF(l) and LHUP(l) respectively.
194 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low;
220 high = u1 * v1;
222 /* prod = (high << 2N) + (high << N); */
223 prodh = high + HHALF(high);
224 prodl = LHUP(high);