Lines Matching refs:t1
25 float a,b,t1,t2,y1,y2,w; in hypotf() local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */ in hypotf()
54 b *= t1; in hypotf()
55 a *= t1; in hypotf()
68 SET_FLOAT_WORD(t1,ha&0xfffff000); in hypotf()
69 t2 = a-t1; in hypotf()
70 w = sqrtf(t1*t1-(b*(-b)-t2*(a+t1))); in hypotf()
75 SET_FLOAT_WORD(t1,(ha+0x00800000)&0xfffff000); in hypotf()
76 t2 = a - t1; in hypotf()
77 w = sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotf()
80 SET_FLOAT_WORD(t1,(127+k)<<23); in hypotf()
81 return t1*w; in hypotf()