HomeSort by relevance Sort by last modified time
    Searched refs:fAllocCount (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkTArray.h 67 fAllocCount = 0;
284 SkTSwap(fAllocCount, that->fAllocCount);
408 fAllocCount = fReserveCount;
411 fAllocCount = SkMax32(fCount, fReserveCount);
412 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T));
433 SkASSERT(fAllocCount >= 0);
438 int newAllocCount = fAllocCount;
440 if (newCount > fAllocCount || newCount < (fAllocCount / 3))
    [all...]
SkDeque.h 126 int fAllocCount; // number of elements to allocate per block
  /external/skia/src/core/
SkDeque.cpp 33 , 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 42 milliseconds