Lines Matching refs:t1
57 double a,b,t1,t2,y1,y2,w; in hypot() local
90 t1=0; in hypot()
91 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */ in hypot()
92 b *= t1; in hypot()
93 a *= t1; in hypot()
106 t1 = 0; in hypot()
107 SET_HIGH_WORD(t1,ha); in hypot()
108 t2 = a-t1; in hypot()
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in hypot()
115 t1 = 0; in hypot()
116 SET_HIGH_WORD(t1,ha+0x00100000); in hypot()
117 t2 = a - t1; in hypot()
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypot()
121 t1 = 0.0; in hypot()
122 SET_HIGH_WORD(t1,(1023+k)<<20); in hypot()
123 return t1*w; in hypot()