Lines Matching refs:fAllocCount
67 fAllocCount = 0; in SkTArray()
284 SkTSwap(fAllocCount, that->fAllocCount); in swap()
408 fAllocCount = fReserveCount; in init()
411 fAllocCount = SkMax32(fCount, fReserveCount); in init()
412 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T)); in init()
433 SkASSERT(fAllocCount >= 0); in checkRealloc()
438 int newAllocCount = fAllocCount; in checkRealloc()
440 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) { in checkRealloc()
445 if (newAllocCount != fAllocCount) { in checkRealloc()
447 fAllocCount = newAllocCount; in checkRealloc()
450 if (fAllocCount == fReserveCount && fPreAllocMemArray) { in checkRealloc()
453 newMemArray = (char*) sk_malloc_throw(fAllocCount*sizeof(T)); in checkRealloc()
477 int fAllocCount; variable