Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkPathOpsConic.h97 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()
DSkPathOpsCubic.cpp382 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()
DSkPathOpsQuad.h88 static int RootsReal(double A, double B, double C, double t[2]);
DSkPathOpsQuad.cpp136 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
DSkPathOpsCubic.h87 static int RootsReal(double A, double B, double C, double D, double t[3]);
/external/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()