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

  /external/chromium_org/third_party/skia/include/core/
SkTArray.h 59 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 = newAllocCount
    [all...]
SkDeque.h 126 int fAllocCount; // number of elements to allocate per block
  /external/skia/include/core/
SkTArray.h 59 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 = newAllocCount
    [all...]
SkDeque.h 126 int fAllocCount; // number of elements to allocate per block
  /external/chromium_org/third_party/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);
  /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);
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 180 fAllocCount = 0;
188 int fAllocCount;
Graphics.cpp 593 fAllocCount(0) {
604 fAllocCount += 1;

Completed in 459 milliseconds