Lines Matching defs:fAllocCount
59 fAllocCount = 0;
371 fAllocCount = fReserveCount;
374 fAllocCount = SkMax32(fCount, fReserveCount);
375 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T));
396 SkASSERT(fAllocCount >= 0);
401 int newAllocCount = fAllocCount;
403 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
408 if (newAllocCount != fAllocCount) {
410 fAllocCount = newAllocCount;
413 if (fAllocCount == fReserveCount && NULL != fPreAllocMemArray) {
416 newMemArray = (char*) sk_malloc_throw(fAllocCount*sizeof(T));
438 int fAllocCount;