Lines Matching refs:t1
53 double a,b,t1,t2,y1,y2,w; in hypot() local
86 t1=0; in hypot()
87 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */ in hypot()
88 b *= t1; in hypot()
89 a *= t1; in hypot()
102 t1 = 0; in hypot()
103 SET_HIGH_WORD(t1,ha); in hypot()
104 t2 = a-t1; in hypot()
105 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in hypot()
111 t1 = 0; in hypot()
112 SET_HIGH_WORD(t1,ha+0x00100000); in hypot()
113 t2 = a - t1; in hypot()
114 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypot()
117 t1 = 0.0; in hypot()
118 SET_HIGH_WORD(t1,(1023+k)<<20); in hypot()
119 return t1*w; in hypot()