Lines Matching refs:reduction
238 static ReductionType CheckConicLinear(const SkConic& , SkPoint* reduction);
239 static ReductionType CheckCubicLinear(const SkPoint cubic[4], SkPoint reduction[3],
241 static ReductionType CheckQuadLinear(const SkPoint quad[3], SkPoint* reduction);
638 SkPoint reduction[3], const SkPoint** tangentPtPtr) {
661 SkEvalCubicAt(cubic, t, &reduction[rCount], nullptr, nullptr);
662 if (reduction[rCount] != cubic[0] && reduction[rCount] != cubic[3]) {
677 SkPoint* reduction) {
695 conic.evalAt(t, reduction, nullptr);
700 SkPoint* reduction) {
716 *reduction = SkEvalQuadAt(quad, t);
722 SkPoint reduction;
723 ReductionType reductionType = CheckConicLinear(conic, &reduction);
736 this->lineTo(reduction);
760 SkPoint reduction;
761 ReductionType reductionType = CheckQuadLinear(quad, &reduction);
774 this->lineTo(reduction);
1280 SkPoint reduction[3];
1282 ReductionType reductionType = CheckCubicLinear(cubic, reduction, &tangentPt);
1295 this->lineTo(reduction[0]);
1299 this->lineTo(reduction[1]);
1302 this->lineTo(reduction[2]);