Lines Matching refs:t1
60 float y1, t1, t2, r, s, t, u, v, w; in powf() local
166 t1 = u + v; in powf()
167 GET_FLOAT_WORD(is, t1); in powf()
168 SET_FLOAT_WORD(t1, is & 0xfffff000); in powf()
169 t2 = v - (t1 - u); in powf()
227 t1 = (((z_h + z_l) + dp_h[k]) + t); in powf()
228 GET_FLOAT_WORD(is, t1); in powf()
229 SET_FLOAT_WORD(t1, is & 0xfffff000); in powf()
230 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powf()
240 p_l = (y - y1) * t1 + y * t2; in powf()
241 p_h = y1 * t1; in powf()
280 t1 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in powf()
281 r = (z * t1) / (t1 - two) - (w + z * w); in powf()