Searched refs:RootsReal (Results 1 – 6 of 6) sorted by relevance
/external/skia/src/pathops/ |
D | SkPathOpsConic.h | 89 static int RootsReal(double A, double B, double C, double t[2]) { in RootsReal() function 90 return SkDQuad::RootsReal(A, B, C, t); in RootsReal()
|
D | SkPathOpsCubic.cpp | 336 int realRoots = RootsReal(A, B, C, D, s); in RootsValidT() 363 int SkDCubic::RootsReal(double A, double B, double C, double D, double s[3]) { in RootsReal() function in SkDCubic 381 return SkDQuad::RootsReal(B, C, D, s); in RootsReal() 386 int num = SkDQuad::RootsReal(A, B, C, s); in RootsReal() 396 int num = SkDQuad::RootsReal(A, A + B, -D, s); in RootsReal()
|
D | SkPathOpsQuad.h | 80 static int RootsReal(double A, double B, double C, double t[2]);
|
D | SkPathOpsQuad.cpp | 106 int realRoots = RootsReal(A, B, C, s); in RootsValidT() 119 int SkDQuad::RootsReal(const double A, const double B, const double C, double s[2]) { in RootsReal() function in SkDQuad
|
D | SkPathOpsCubic.h | 84 static int RootsReal(double A, double B, double C, double D, double t[3]);
|
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 162 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in DEF_TEST() 257 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in testOneFailure()
|