Searched defs:fAllocCount (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkDeque.h126 int fAllocCount; // number of elements to allocate per block member in class:SkDeque
H A DSkTArray.h59 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
438 int fAllocCount; member in class:SkTArray
[all...]
/external/skia/include/core/
H A DSkDeque.h126 int fAllocCount; // number of elements to allocate per block member in class:SkDeque
H A DSkTArray.h59 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
438 int fAllocCount; member in class:SkTArray
[all...]

Completed in 101 milliseconds