Lines Matching refs:t1
51 long double a=x,b=y,t1,t2,y1,y2,w; in hypotl() local
85 t1=1; in hypotl()
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */ in hypotl()
87 b *= t1; in hypotl()
88 a *= t1; in hypotl()
101 t1 = a; in hypotl()
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e; in hypotl()
104 t2 = a-t1; in hypotl()
105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
112 t1 = a; in hypotl()
113 uv.e = t1; uv.bits.manl = 0; t1 = uv.e; in hypotl()
114 t2 = a - t1; in hypotl()
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
119 t1 = 1.0; in hypotl()
120 GET_HIGH_WORD(high,t1); in hypotl()
121 SET_HIGH_WORD(t1,high+DESW(k)); in hypotl()
122 return t1*w; in hypotl()