Home
last modified time | relevance | path

Searched refs:RootsReal (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/src/pathops/
DSkPathOpsConic.h101 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()
DSkPathOpsCubic.cpp374 int realRoots = RootsReal(A, B, C, D, s); in RootsValidT()
401 int SkDCubic::RootsReal(double A, double B, double C, double D, double s[3]) { in RootsReal() function in SkDCubic
419 return SkDQuad::RootsReal(B, C, D, s); in RootsReal()
424 int num = SkDQuad::RootsReal(A, B, C, s); in RootsReal()
434 int num = SkDQuad::RootsReal(A, A + B, -D, s); in RootsReal()
DSkPathOpsQuad.cpp140 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
DSkPathOpsQuad.h92 static int RootsReal(double A, double B, double C, double t[2]);
DSkPathOpsCubic.h91 static int RootsReal(double A, double B, double C, double D, double t[3]);
/third_party/skia/tests/
DPathOpsCubicLineIntersectionIdeas.cpp164 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in DEF_TEST()
261 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in testOneFailure()