Lines Matching refs:fCurrPoint
49 fCurrPoint = fPoints;
60 fCurrPoint = fPoints;
222 fCurrPoint = fPoints;
237 SkASSERT(fCurrPoint - fPoints <= kMaxPoints);
243 fCurrPoint = fPoints;
418 fCurrPoint = fPoints;
441 SkASSERT(fCurrPoint - fPoints <= kMaxPoints);
448 fCurrPoint = fPoints;
457 fCurrPoint[0] = p0;
458 fCurrPoint[1] = p1;
459 fCurrPoint += 2;
469 fCurrPoint[0].set(x, y0);
470 fCurrPoint[1].set(x, y1);
471 fCurrPoint += 2;
478 fCurrPoint[0] = pts[2];
479 fCurrPoint[2] = pts[0];
481 fCurrPoint[0] = pts[0];
482 fCurrPoint[2] = pts[2];
484 fCurrPoint[1] = pts[1];
485 fCurrPoint += 3;
493 fCurrPoint[i] = pts[3 - i];
496 memcpy(fCurrPoint, pts, 4 * sizeof(SkPoint));
498 fCurrPoint += 4;
506 memcpy(pts, fCurrPoint, 2 * sizeof(SkPoint));
507 fCurrPoint += 2;
511 memcpy(pts, fCurrPoint, 3 * sizeof(SkPoint));
512 fCurrPoint += 3;
516 memcpy(pts, fCurrPoint, 4 * sizeof(SkPoint));
517 fCurrPoint += 4;