Home | History | Annotate | Download | only in fpu

Lines Matching defs:y0

194 	u_int y0, y1, y2, y3;
261 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
272 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
275 y0 = bit << 1;
280 t0 = y0 | bit; /* t = y + bit */
284 y0 |= bit << 1; /* y += bit << 1 */
291 /* calculate q1. note (y0&1)==0. */
292 #define t0 y0
304 y0 |= 1; /* y += bit << 1 */
322 /* calculate q2. note (y1&1)==0; y0 (aka t0) is fixed. */
355 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */