Lines Matching refs:t
69 __float64 t, w, p, q, c, r, s; in asin64() local
85 t = x * x; in asin64()
86 p = t * in asin64()
87 (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in asin64()
88 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asin64()
95 t = w * _F_64(0.5); in asin64()
96 p = t * (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in asin64()
97 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asin64()
98 s = sqrt(t); in asin64()
101 t = pio2_hi - (_F_64(2.0) * (s + s * w) - pio2_lo); in asin64()
105 c = (t - w * w) / (s + w); in asin64()
109 t = pio4_hi - (p - q); in asin64()
112 return t; in asin64()
114 return -t; in asin64()