Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkDQuadLineIntersection.cpp243 int verticalIntersect(double axisIntercept, double roots[2]) { in verticalIntersect() function in LineQuadraticIntersections
253 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineQuadraticIntersections
259 int roots = verticalIntersect(axisIntercept, rootVals); in verticalIntersect()
418 return q.verticalIntersect(x, top, bottom, flipped); in vertical()
443 return q.verticalIntersect(x, roots); in VerticalIntercept()
452 int SkDQuad::verticalIntersect(double xIntercept, double roots[2]) const { in verticalIntersect() function in SkDQuad
DSkDConicLineIntersection.cpp139 int verticalIntersect(double axisIntercept, double roots[2]) { in verticalIntersect() function in LineConicIntersections
144 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineConicIntersections
150 int count = this->verticalIntersect(axisIntercept, roots); in verticalIntersect()
337 return c.verticalIntersect(x, top, bottom, flipped); in vertical()
362 return c.verticalIntersect(x, roots); in VerticalIntercept()
DSkDCubicLineIntersection.cpp245 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineCubicIntersections
411 return c.verticalIntersect(x, top, bottom, flipped); in vertical()
435 int SkDCubic::verticalIntersect(double xIntercept, double roots[3]) const { in verticalIntersect() function in SkDCubic
DSkPathOpsQuad.h101 int verticalIntersect(double xIntercept, double roots[2]) const;
DSkPathOpsCubic.h99 int verticalIntersect(double xIntercept, double roots[3]) const;
DSkPathOpsCurve.h311 return cubic.set(a).verticalIntersect(x, roots); in cubic_intercept_v()
/external/skia/src/core/
DSkGlyphCache.cpp295 int count = yAxis ? quad.verticalIntersect(axis, roots) in AddQuad()
308 int count = yAxis ? cubic.verticalIntersect(axis, roots) in AddCubic()
DSkGeometry.cpp890 return cubic_dchop_at_intercept(src, x, dst, &SkDCubic::verticalIntersect); in SkChopMonoCubicAtX()