Lines Matching refs:z
112 double z, y[2], w, s, v, p, q; in cos() local
124 z = x * x; in cos()
126 w = z * (QQ1 + z * QQ2); in cos()
128 w = z * ((Q1 + z * Q2) + (z * z) * (Q3 + z * Q4)); in cos()
149 z = x * x; in cos()
152 w = PIO2_L + (z * x) * (PP1 + z * PP2); in cos()
154 w = PIO2_L + (z * x) * ((P1 + z * P2) + in cos()
155 (z * z) * (P3 + z * P4)); in cos()
170 z = x * x; in cos()
173 w = (z * x) * (PP1 + z * PP2) - PI3O2_L; in cos()
175 w = (z * x) * ((P1 + z * P2) + (z * z) in cos()
176 * (P3 + z * P4)) - PI3O2_L; in cos()
190 z = x * x; in cos()
193 w = PI5O2_L + (z * x) * (PP1 + z * PP2); in cos()
195 w = PI5O2_L + (z * x) * ((P1 + z * P2) + in cos()
196 (z * z) * (P3 + z * P4)); in cos()
202 z = _TBL_sincos[j+1]; in cos()
205 return (z - (w * p - z * q)); in cos()