Searched refs:RootsReal (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/src/pathops/ |
H A D | SkPathOpsConic.h | 101 static int RootsReal(double A, double B, double C, double t[2]) { in RootsReal() function 102 return SkDQuad::RootsReal(A, B, C, t); in RootsReal()
|
H A D | SkPathOpsCubic.cpp | 374 int realRoots = RootsReal(A, B, C, D, s); 401 int SkDCubic::RootsReal(double A, double B, double C, double D, double s[3]) { 419 return SkDQuad::RootsReal(B, C, D, s); 424 int num = SkDQuad::RootsReal(A, B, C, s); 434 int num = SkDQuad::RootsReal(A, A + B, -D, s);
|
H A D | SkPathOpsQuad.cpp | 140 int realRoots = RootsReal(A, B, C, s); in RootsValidT() 162 int SkDQuad::RootsReal(const double A, const double B, const double C, double s[2]) { in RootsReal() function in SkDQuad
|
H A D | SkPathOpsQuad.h | 92 static int RootsReal(double A, double B, double C, double t[2]);
|
H A D | SkPathOpsCubic.h | 91 static int RootsReal(double A, double B, double C, double D, double t[3]);
|
/third_party/skia/tests/ |
H A D | PathOpsCubicLineIntersectionIdeas.cpp | 164 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in DEF_TEST() 261 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots);
|
Completed in 5 milliseconds