Home | History | Annotate | Download | only in src

Lines Matching refs:t1

26 	float a=x,b=y,t1,t2,y1,y2,w;
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
75 SET_FLOAT_WORD(t1,ha+0x00800000);
76 t2 = a - t1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
80 SET_FLOAT_WORD(t1,0x3f800000+(k<<23));
81 return t1*w;