Lines Matching refs:t_h
147 long double s2, s_h, s_l, t_h, t_l; in powl() local
331 t_h = ax + bp[k]; in powl()
332 o.value = t_h; in powl()
335 t_h = o.value; in powl()
336 t_l = ax - (t_h - bp[k]); in powl()
337 s_l = v * ((u - s_h * t_h) - s_h * t_l); in powl()
345 t_h = 3.0L + s2 + r; in powl()
346 o.value = t_h; in powl()
349 t_h = o.value; in powl()
350 t_l = r - ((t_h - 3.0L) - s2); in powl()
352 u = s_h * t_h; in powl()
353 v = s_l * t_h + t_l * s; in powl()