Home | History | Annotate | Download | only in pathops

Lines Matching refs:endCount

204     int endCount = fEndPtTs.count(); // all starts and ends
205 SkASSERT(endCount > 0);
206 SkASSERT(endCount == fPartials.count() * 2);
208 for (int index = 0; index < endCount; index += 2) {
218 int linkCount = endCount / 2; // number of partial contours
225 const int entries = endCount * (endCount - 1) / 2; // folded triangle
231 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) {
233 for (iIndex = rIndex + 1; iIndex < endCount; ++iIndex) {
242 rRow += endCount;
250 int row = pair / endCount;
251 int col = pair - row * endCount;