Home
last modified time | relevance | path

Searched refs:FindExtrema (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsRect.cpp19 roots = SkDQuad::FindExtrema(&sub[0].fX, tValues); in setBounds()
22 roots += SkDQuad::FindExtrema(&sub[0].fY, &tValues[roots]); in setBounds()
36 roots = SkDConic::FindExtrema(&sub[0].fX, sub.fWeight, tValues); in setBounds()
39 roots += SkDConic::FindExtrema(&sub[0].fY, sub.fWeight, &tValues[roots]); in setBounds()
53 roots = SkDCubic::FindExtrema(&sub[0].fX, tValues); in setBounds()
56 roots += SkDCubic::FindExtrema(&sub[0].fY, &tValues[roots]); in setBounds()
DSkDCubicLineIntersection.cpp138 int extrema = SkDCubic::FindExtrema(&c[0].fX, extremeTs); in intersectRay()
174 int extrema = SkDCubic::FindExtrema(&c[0].fY, extremeTs); in HorizontalIntersect()
237 int extrema = SkDCubic::FindExtrema(&c[0].fX, extremeTs); in VerticalIntersect()
DSkPathOpsConic.h59 static int FindExtrema(const double src[], SkScalar weight, double tValue[1]);
DSkPathOpsQuad.h64 static int FindExtrema(const double src[], double tValue[1]);
DSkPathOpsCubic.h66 static int FindExtrema(const double src[], double tValue[2]);
DSkPathOpsConic.cpp31 int SkDConic::FindExtrema(const double src[], SkScalar w, double t[1]) { in FindExtrema() function in SkDConic
DSkPathOpsCubic.cpp517 int SkDCubic::FindExtrema(const double src[], double tValues[2]) { in FindExtrema() function in SkDCubic
688 int roots = SkDCubic::FindExtrema(&fPts[0].fY, extremeTs); in top()
DSkPathOpsQuad.cpp328 int SkDQuad::FindExtrema(const double src[], double tValue[1]) { in FindExtrema() function in SkDQuad