Lines Matching refs:fRowCount
59 int32_t fRowCount; member
69 return (uint8_t*)(this->yoffsets() + fRowCount); in data()
72 return (const uint8_t*)(this->yoffsets() + fRowCount); in data()
79 head->fRowCount = rowCount; in Alloc()
146 fStopYOff = fCurrYOff + head->fRowCount; in Iter()
198 SkASSERT(head->fRowCount > 0); in validate()
201 const YOffset* ystop = yoff + head->fRowCount; in validate()
448 YOffset* stop = yoff + head->fRowCount; in trimLeftRight()
524 YOffset* stop = yoff + head->fRowCount; in trimTopBottom()
538 SkASSERT(skip <= head->fRowCount); in trimTopBottom()
539 if (skip == head->fRowCount) { in trimTopBottom()
547 for (int i = skip; i < head->fRowCount; ++i) { in trimTopBottom()
552 size_t size = head->fRowCount * sizeof(YOffset) + head->fDataSize; in trimTopBottom()
557 head->fRowCount -= skip; in trimTopBottom()
558 SkASSERT(head->fRowCount > 0); in trimTopBottom()
569 stop = yoff = head->yoffsets() + head->fRowCount; in trimTopBottom()
574 SkASSERT(skip >= 0 && skip < head->fRowCount); in trimTopBottom()
582 head->fRowCount -= skip; in trimTopBottom()
583 SkASSERT(head->fRowCount > 0); in trimTopBottom()
605 SkASSERT(head->fRowCount > 0); in trimBounds()
606 const YOffset& lastY = yoff[head->fRowCount - 1]; in trimBounds()
680 return ah->fRowCount == bh->fRowCount && in operator ==()
733 if (head->fRowCount != 1) { in isRect()
879 SkASSERT(yoff - fRunHead->yoffsets() < fRunHead->fRowCount); in findRow()