HomeSort by relevance Sort by last modified time
    Searched refs:cubicRootsReal (Results 1 - 4 of 4) sorted by null

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

Completed in 74 milliseconds