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