Searched refs:fAllocCount (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkTArray.h67 fAllocCount = 0;
388 fAllocCount = fReserveCount;
391 fAllocCount = SkMax32(fCount, fReserveCount);
392 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T));
413 SkASSERT(fAllocCount >= 0);
418 int newAllocCount = fAllocCount;
420 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
425 if (newAllocCount != fAllocCount) {
427 fAllocCount
457 int fAllocCount; member in class:SkTArray
[all...]
H A DSkDeque.h126 int fAllocCount; // number of elements to allocate per block member in class:SkDeque
/external/skia/include/core/
H A DSkTArray.h67 fAllocCount = 0;
388 fAllocCount = fReserveCount;
391 fAllocCount = SkMax32(fCount, fReserveCount);
392 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T));
413 SkASSERT(fAllocCount >= 0);
418 int newAllocCount = fAllocCount;
420 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
425 if (newAllocCount != fAllocCount) {
427 fAllocCount
457 int fAllocCount; member in class:SkTArray
[all...]
H A DSkDeque.h126 int fAllocCount; // number of elements to allocate per block member in class:SkDeque
/external/chromium_org/third_party/skia/src/core/
H A DSkDeque.cpp33 , fAllocCount(allocCount) {
43 , fAllocCount(allocCount) {
74 fFrontBlock = this->allocateBlock(fAllocCount);
89 first = this->allocateBlock(fAllocCount);
114 fBackBlock = this->allocateBlock(fAllocCount);
129 last = this->allocateBlock(fAllocCount);
/external/skia/src/core/
H A DSkDeque.cpp33 , fAllocCount(allocCount) {
43 , fAllocCount(allocCount) {
74 fFrontBlock = this->allocateBlock(fAllocCount);
89 first = this->allocateBlock(fAllocCount);
114 fBackBlock = this->allocateBlock(fAllocCount);
129 last = this->allocateBlock(fAllocCount);

Completed in 157 milliseconds