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

  /external/chromium_org/third_party/skia/include/core/
SkDeque.h 126 int fAllocCount; // number of elements to allocate per block
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...]
  /external/skia/include/core/
SkDeque.h 126 int fAllocCount; // number of elements to allocate per block
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...]
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 180 fAllocCount = 0;
188 int fAllocCount;

Completed in 380 milliseconds