Lines Matching defs:fCount
33 int count() const { return fCount; }
99 fCount = 0;
112 // Is fCount correct?
119 SKTDYNAMICHASH_CHECK(count == fCount);
165 fCount++;
181 fCount--;
191 if (fCount + fDeleted + 1 > (fCapacity * kGrowPercent) / 100) {
197 if (fCount < (fCapacity * kShrinkPercent) / 100 && fCapacity / 2 > kMinCapacity) {
203 SkDEBUGCODE(int oldCount = fCount;)
215 SkASSERT(oldCount == fCount);
233 int fCount; // Number of non Empty(), non Deleted() entries in fArray.