Searched refs:RootsReal (Results 1 – 6 of 6) sorted by relevance
/external/skia/src/pathops/ |
D | SkPathOpsConic.h | 97 static int RootsReal(double A, double B, double C, double t[2]) { in RootsReal() function 98 return SkDQuad::RootsReal(A, B, C, t); in RootsReal()
|
D | SkPathOpsCubic.cpp | 382 int realRoots = RootsReal(A, B, C, D, s); in RootsValidT() 409 int SkDCubic::RootsReal(double A, double B, double C, double D, double s[3]) { in RootsReal() function in SkDCubic 427 return SkDQuad::RootsReal(B, C, D, s); in RootsReal() 432 int num = SkDQuad::RootsReal(A, B, C, s); in RootsReal() 442 int num = SkDQuad::RootsReal(A, A + B, -D, s); in RootsReal()
|
D | SkPathOpsQuad.h | 88 static int RootsReal(double A, double B, double C, double t[2]);
|
D | SkPathOpsQuad.cpp | 136 int realRoots = RootsReal(A, B, C, s); in RootsValidT() 149 int SkDQuad::RootsReal(const double A, const double B, const double C, double s[2]) { in RootsReal() function in SkDQuad
|
D | SkPathOpsCubic.h | 87 static int RootsReal(double A, double B, double C, double D, double t[3]);
|
/external/skia/tests/ |
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); in testOneFailure()
|