Lines Matching defs:cbrt
14 /* cbrt(x)
25 /* |1/cbrt(x) - p(x)| < 2**-23.5 (~[-7.93e-8, 7.929e-8]). */
33 double cbrt(double x)
39 if (hx >= 0x7ff00000) /* cbrt(NaN,INF) is itself */
43 * Rough cbrt to 5 bits:
44 * cbrt(2**e*(1+m) ~= 2**(e/3)*(1+(e%3+m)/3)
61 return x; /* cbrt(0) is itself */
70 * New cbrt to 23 bits:
71 * cbrt(x) = t*cbrt(x/t**3) ~= t*P(t**3/x)
72 * where P(r) is a polynomial of degree 4 that approximates 1/cbrt(r)
74 * has produced t such than |t/cbrt(x) - 1| ~< 1/32, and cubing this
84 * the result is larger in magnitude than cbrt(x) but not much more than