Lines Matching refs:t
61 __float64 r,s,t=_F_64(0.0),w; in cbrt64() local
76 {SET_HIGH_WORD(t,0x43500000); /* set t= 2**54 */ in cbrt64()
77 t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2); in cbrt64()
80 SET_HIGH_WORD(t,hx/3+B1); in cbrt64()
84 r=t*t/x; in cbrt64()
85 s=C+r*t; in cbrt64()
86 t*=G+F/(s+E+D/s); in cbrt64()
89 GET_HIGH_WORD(high,t); in cbrt64()
90 INSERT_WORDS(t,high+0x00000001,0); in cbrt64()
94 s=t*t; /* t*t is exact */ in cbrt64()
96 w=t+t; in cbrt64()
97 r=(r-t)/(w+r); /* r-s is exact */ in cbrt64()
98 t=t+t*r; in cbrt64()
101 GET_HIGH_WORD(high,t); in cbrt64()
102 SET_HIGH_WORD(t,high|sign); in cbrt64()
103 return(t); in cbrt64()