Home | History | Annotate | Download | only in fpu

Lines Matching defs:t0

261 	 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
269 #define t0 tt
272 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
280 t0 = y0 | bit; /* t = y + bit */
281 if (x0 >= t0) { /* if x >= t then */
282 x0 -= t0; /* x -= t */
289 #undef t0
292 #define t0 y0
300 FPU_SUBC(d0, x0, t0); /* d = x - t */
311 FPU_SUBC(d0, x0, t0);
322 /* calculate q2. note (y1&1)==0; y0 (aka t0) is fixed. */
332 FPU_SUBC(d0, x0, t0);
344 FPU_SUBC(d0, x0, t0);
355 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */
366 FPU_SUBC(d0, x0, t0);
379 FPU_SUBC(d0, x0, t0);