Lines Matching full:has
20 number with `BC_NUM_KARATSUBA_LEN` digits or larger. `BC_NUM_KARATSUBA_LEN` has
57 This `bc` implements [Exponentiation by Squaring][3], which (via Karatsuba) has
84 to calculate `cos(x)`. It has a complexity of `O(n^3)`.
86 **Note**: this series has a tendency to *occasionally* produce an error of 1
110 It has a complexity of `O(n^3)`.
133 It has a complexity of `O(n^3)`.
153 to reduce `x` to small enough. It has a complexity of `O(n^3)`.
175 to calculate the bessel when `x < 0`, It has a complexity of `O(n^3)`.
194 It has a complexity of `O(n^3)` because both `e()` and `l()` do.
271 It has a complexity of `O(n)` because of add.
279 It has a complexity of `O(n)` because of add.
287 It has a complexity of `O(n^3)` because of linear amount of `O(n^2)`
296 It has a complexity of `O(n^3)` because of the division and factorials.
304 It has a complexity of `O(n^3)` because of the division and factorials.
314 It has a complexity of `O(n^3)` because of the division and `l()`.
350 It has a complexity of `O(n^4)` because it has a linear number of divisions.
361 It has a complexity of `O(n^4)` because of `gcd()`.
369 It has a complexity of `O(n^3)` because of arctangent.
377 It has a complexity of `O(n^3)` because of sine, cosine, and division.
385 It has a complexity of `O(n^3)` because of arctangent.