Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkPathOpsConic.h89 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()
DSkPathOpsCubic.cpp336 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()
DSkPathOpsQuad.h80 static int RootsReal(double A, double B, double C, double t[2]);
DSkPathOpsQuad.cpp106 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
DSkPathOpsCubic.h84 static int RootsReal(double A, double B, double C, double D, double t[3]);
/external/skia/tests/
DPathOpsCubicLineIntersectionIdeas.cpp162 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in DEF_TEST()
257 int realRoots = SkDCubic::RootsReal(A, B, C, D, allRoots); in testOneFailure()