Searched refs:fAllocCount (Results 1 – 6 of 6) sorted by relevance
67 fAllocCount = 0; in SkTArray()388 fAllocCount = fReserveCount; in init()391 fAllocCount = SkMax32(fCount, fReserveCount); in init()392 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T)); in init()413 SkASSERT(fAllocCount >= 0); in checkRealloc()418 int newAllocCount = fAllocCount; in checkRealloc()420 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) { in checkRealloc()425 if (newAllocCount != fAllocCount) { in checkRealloc()427 fAllocCount = newAllocCount; in checkRealloc()430 if (fAllocCount == fReserveCount && NULL != fPreAllocMemArray) { in checkRealloc()[all …]
126 int fAllocCount; // number of elements to allocate per block variable
33 , fAllocCount(allocCount) { in SkDeque()43 , fAllocCount(allocCount) { in SkDeque()74 fFrontBlock = this->allocateBlock(fAllocCount); in push_front()89 first = this->allocateBlock(fAllocCount); in push_front()114 fBackBlock = this->allocateBlock(fAllocCount); in push_back()129 last = this->allocateBlock(fAllocCount); in push_back()