Like cosSinSmall but converges faster. It calls
cosSinSmall with reduced arguments using the trigonometric
identities cos (4*x) = 8 * cos x ^ 2 * (cos x ^ 2 - 1) + 1 sin
(4*x) = 4 * sin x * cos x * (1 - 2 * sin x ^ 2)
Note that the faster convergence is hidden by the overhead.
The same could be achieved with a fourth power of a complex number.