Home | History | Annotate | Download | only in gpu

Lines Matching refs:fCount

37             fCount(0) {
50 int indexInBlock = fCount % fItemsPerBlock;
53 if (0 != fCount) {
59 void* ret = (char*)fBlocks[fCount/fItemsPerBlock] +
61 ++fCount;
70 GrUIDivRoundUp(fCount, fItemsPerBlock));
79 fCount = 0;
86 return fCount;
92 bool empty() const { return fCount == 0; }
98 GrAssert(fCount);
99 return (*this)[fCount-1];
106 GrAssert(fCount);
107 return (*this)[fCount-1];
114 GrAssert(i >= 0 && i < fCount);
123 GrAssert(i >= 0 && i < fCount);
136 int fCount;