Lines Matching defs:fCount
35 fCount(0) {
51 SkASSERT(0 == fCount);
64 int indexInBlock = fCount % fItemsPerBlock;
67 if (0 != fCount) {
73 void* ret = (char*)fBlocks[fCount/fItemsPerBlock] +
75 ++fCount;
84 GrUIDivRoundUp(fCount, fItemsPerBlock));
93 fCount = 0;
100 return fCount;
106 bool empty() const { return fCount == 0; }
112 SkASSERT(fCount);
113 return (*this)[fCount-1];
120 SkASSERT(fCount);
121 return (*this)[fCount-1];
128 SkASSERT(i >= 0 && i < fCount);
137 SkASSERT(i >= 0 && i < fCount);
150 int fCount;