Searched refs:cubicRootsReal (Results 1 – 8 of 8) sorted by relevance
/external/skia/experimental/Intersection/ |
D | QuarticRoot.cpp | 88 return cubicRootsReal(t3, t2, t1, t0, roots); in reducedQuarticRoots() 95 int num = cubicRootsReal(t4, t3, t2, t1, roots); in reducedQuarticRoots() 106 int num = cubicRootsReal(t4, t4 + t3, -(t1 + t0), -t0, roots); // note that -C==A+B+D+E in reducedQuarticRoots() 136 num = cubicRootsReal(1, 0, p, q, s); in quarticRootsReal() 141 int roots = cubicRootsReal(1, -p / 2, -r, r * p / 2 - q * q / 8, cubicRoots); in quarticRootsReal()
|
D | CubicUtilities.h | 26 int cubicRootsReal(double A, double B, double C, double D, double s[3]);
|
D | CubicUtilities.cpp | 162 int realRoots = cubicRootsReal(A, B, C, D, s); in cubicRootsValidT() 168 int cubicRootsReal(double A, double B, double C, double D, double s[3]) { in cubicRootsReal() function
|
D | QuarticRoot_Test.cpp | 73 : cubicRootsReal(A, b, c, d, roots); in testOneCubic()
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | QuarticRoot.cpp | 88 return cubicRootsReal(t3, t2, t1, t0, roots); in reducedQuarticRoots() 95 int num = cubicRootsReal(t4, t3, t2, t1, roots); in reducedQuarticRoots() 106 int num = cubicRootsReal(t4, t4 + t3, -(t1 + t0), -t0, roots); // note that -C==A+B+D+E in reducedQuarticRoots() 136 num = cubicRootsReal(1, 0, p, q, s); in quarticRootsReal() 141 int roots = cubicRootsReal(1, -p / 2, -r, r * p / 2 - q * q / 8, cubicRoots); in quarticRootsReal()
|
D | CubicUtilities.h | 26 int cubicRootsReal(double A, double B, double C, double D, double s[3]);
|
D | CubicUtilities.cpp | 162 int realRoots = cubicRootsReal(A, B, C, D, s); in cubicRootsValidT() 168 int cubicRootsReal(double A, double B, double C, double D, double s[3]) { in cubicRootsReal() function
|
D | QuarticRoot_Test.cpp | 73 : cubicRootsReal(A, b, c, d, roots); in testOneCubic()
|