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 57 fAllocCount = 0;
311 fAllocCount = fReserveCount;
314 fAllocCount = SkMax32(fCount, fReserveCount);
315 fMemArray = sk_malloc_throw(fAllocCount * sizeof(T));
327 SkASSERT(fAllocCount >= 0);
332 int newAllocCount = fAllocCount;
334 if (newCount > fAllocCount) {
337 } else if (newCount < fAllocCount / 3) {
338 newAllocCount = SkMax32(fAllocCount / 2, fReserveCount);
341 if (newAllocCount != fAllocCount) {
    [all...]
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 156 fAllocCount = 0;
164 int fAllocCount;
Graphics.cpp 511 fAllocCount(0) {
522 fAllocCount += 1;

Completed in 988 milliseconds