Home | History | Annotate | Download | only in fpu

Lines Matching defs:t0

281 	 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
289 #define t0 tt
292 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
300 t0 = y0 | bit; /* t = y + bit */
301 if (x0 >= t0) { /* if x >= t then */
302 x0 -= t0; /* x -= t */
309 #undef t0
312 #define t0 y0
320 FPU_SUBC(d0, x0, t0); /* d = x - t */
331 FPU_SUBC(d0, x0, t0);
342 /* calculate q2. note (y1&1)==0; y0 (aka t0) is fixed. */
352 FPU_SUBC(d0, x0, t0);
364 FPU_SUBC(d0, x0, t0);
375 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */
386 FPU_SUBC(d0, x0, t0);
399 FPU_SUBC(d0, x0, t0);