Lines Matching refs:fCount
44 fCount(0) { in GrAllocator()
57 int indexInBlock = fCount % fItemsPerBlock; in push_back()
60 if (0 != fCount) { in push_back()
66 void* ret = (char*)fBlocks[fCount/fItemsPerBlock] + in push_back()
68 ++fCount; in push_back()
77 GrUIDivRoundUp(fCount, fItemsPerBlock)); in reset()
86 fCount = 0; in reset()
93 return fCount; in count()
99 bool empty() const { return fCount == 0; } in empty()
105 GrAssert(fCount); in back()
106 return (*this)[fCount-1]; in back()
113 GrAssert(fCount); in back()
114 return (*this)[fCount-1]; in back()
121 GrAssert(i >= 0 && i < fCount);
130 GrAssert(i >= 0 && i < fCount);
144 int fCount; variable