Home | History | Annotate | Download | only in core

Lines Matching refs:fRowCount

60     int32_t fRowCount;
70 return (uint8_t*)(this->yoffsets() + fRowCount);
73 return (const uint8_t*)(this->yoffsets() + fRowCount);
80 head->fRowCount = rowCount;
147 fStopYOff = fCurrYOff + head->fRowCount;
198 SkASSERT(head->fRowCount > 0);
201 const YOffset* ystop = yoff + head->fRowCount;
408 YOffset* stop = yoff + head->fRowCount;
484 YOffset* stop = yoff + head->fRowCount;
498 SkASSERT(skip <= head->fRowCount);
499 if (skip == head->fRowCount) {
503 // adjust fRowCount and fBounds.fTop, and slide all the data up
507 for (int i = skip; i < head->fRowCount; ++i) {
512 size_t size = head->fRowCount * sizeof(YOffset) + head->fDataSize;
517 head->fRowCount -= skip;
518 SkASSERT(head->fRowCount > 0);
529 stop = yoff = head->yoffsets() + head->fRowCount;
534 SkASSERT(skip >= 0 && skip < head->fRowCount);
542 head->fRowCount -= skip;
543 SkASSERT(head->fRowCount > 0);
565 SkASSERT(head->fRowCount > 0);
566 const YOffset& lastY = yoff[head->fRowCount - 1];
640 return ah->fRowCount == bh->fRowCount &&
811 SkASSERT(yoff - fRunHead->yoffsets() < fRunHead->fRowCount);