Home | History | Annotate | Download | only in quad

Lines Matching defs:high

76  *	uv = (2^2n + 2^n) (u1 v1)  +			[u1v1 = high]
96 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
100 * (2^n)(high + mid + low) + low
102 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor
112 u_int high, mid, udiff, vdiff;
144 * any upper bits in high and mid, so we can use native
159 high = u1 * v1;
164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
190 * splits into high and low ints as HHALF(l) and LHUP(l) respectively.
195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low;
221 high = u1 * v1;
223 /* prod = (high << 2N) + (high << N); */
224 prodh = high + HHALF(high);
225 prodl = LHUP(high);