Lines Matching refs:t1
47 long double a=x,b=y,t1,t2,y1,y2,w; in hypotl() local
81 t1=1; in hypotl()
82 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */ in hypotl()
83 b *= t1; in hypotl()
84 a *= t1; in hypotl()
97 t1 = a; in hypotl()
99 uv.e = t1; uv.bits.manl = 0; t1 = uv.e; in hypotl()
100 t2 = a-t1; in hypotl()
101 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
108 t1 = a; in hypotl()
109 uv.e = t1; uv.bits.manl = 0; t1 = uv.e; in hypotl()
110 t2 = a - t1; in hypotl()
111 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
115 t1 = 1.0; in hypotl()
116 GET_HIGH_WORD(high,t1); in hypotl()
117 SET_HIGH_WORD(t1,high+DESW(k)); in hypotl()
118 return t1*w; in hypotl()