Lines Matching refs:fCursor
139 int cursor() const { return this->alignedOffset<Align, Padding>(fCursor); } in cursor()
144 bool isScratch() const { return fCursor < 0; } in isScratch()
146 fCursor = -1; in markAsScratch()
158 int fCursor; // (this + fCursor) points to next available allocation variable
586 SkASSERT(offset - fTail->fCursor >= (int) Padding && in allocate()
587 offset - fTail->fCursor <= (int) (Padding + Align - 1)); in allocate()
590 int start = fTail->fCursor; in allocate()
591 fTail->fCursor = end; in allocate()
647 if (fCursor == end) { in resize()
652 if (nextCursor < fCursor) { in resize()
660 fCursor = nextCursor; in resize()
676 if (fCursor == end) { in release()
677 fCursor = start; in release()