Lines Matching defs:start
111 /* A tiny change can move the start +/- 4. The order can only be determined if
329 int start = std::min(fSectorStart, fSectorEnd);
331 bool crossesZero = end - start > 16;
554 // the point could be close to or equal to its end, but shouldn't be near the start.
659 SkDPoint start;
660 start.set(this->fStart->pt());
680 SkDVector vLeft = *endPt - start;
681 SkDVector vRight = oppPt - start;
733 // OPTIMIZE: return where insertion succeeded. Then, start next insertion on opposite side
958 void SkOpAngle::set(SkOpSpanBase* start, SkOpSpanBase* end) {
959 fStart = start;
961 SkASSERT(start != end);
966 SkDEBUGCODE(fID = start ? start->globalState()->nextAngleID() : -1);
1091 int start = std::min(fSectorStart, fSectorEnd);
1092 bool curveBendsCCW = (fSectorStart == start) ^ crossesZero;
1093 // bump the start and end of the sector span if they are on exact compass points
1101 start = std::min(fSectorStart, fSectorEnd);
1104 fSectorMask = (unsigned) -1 >> (31 - end + start) << start;
1106 fSectorMask = (unsigned) -1 >> (31 - start) | ((unsigned) -1 << end);