Lines Matching refs:t
37 float t, w, p, q, c, r, s; in asinf() local
51 t = x * x; in asinf()
52 p = t * in asinf()
53 (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in asinf()
54 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asinf()
61 t = w * (float)0.5; in asinf()
62 p = t * (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in asinf()
63 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asinf()
64 s = sqrtf(t); in asinf()
67 t = pio2_hi - ((float)2.0 * (s + s * w) - pio2_lo); in asinf()
73 c = (t - w * w) / (s + w); in asinf()
77 t = pio4_hi - (p - q); in asinf()
80 return t; in asinf()
82 return -t; in asinf()