Home
last modified time | relevance | path

Searched refs:fAllocCount (Results 1 – 3 of 3) sorted by relevance

/external/skia/include/core/
DSkTArray.h67 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()
[all …]
DSkDeque.h126 int fAllocCount; // number of elements to allocate per block variable
/external/skia/src/core/
DSkDeque.cpp33 , 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()