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

  /external/chromium_org/third_party/skia/include/core/
SkTArray.h 66 fReserveCount = gMIN_ALLOC_COUNT;
382 fReserveCount = (preAllocOrReserveCount > 0) ?
386 if (fReserveCount >= fCount &&
388 fAllocCount = fReserveCount;
391 fAllocCount = SkMax32(fCount, fReserveCount);
423 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount);
430 if (fAllocCount == fReserveCount && fPreAllocMemArray) {
455 int fReserveCount;
  /external/skia/include/core/
SkTArray.h 66 fReserveCount = gMIN_ALLOC_COUNT;
382 fReserveCount = (preAllocOrReserveCount > 0) ?
386 if (fReserveCount >= fCount &&
388 fAllocCount = fReserveCount;
391 fAllocCount = SkMax32(fCount, fReserveCount);
423 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount);
430 if (fAllocCount == fReserveCount && NULL != fPreAllocMemArray) {
455 int fReserveCount;

Completed in 112 milliseconds