Searched defs:fReserveCount (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkTArray.h66 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; member in class:SkTArray
/external/skia/include/core/
H A DSkTArray.h66 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; member in class:SkTArray

Completed in 453 milliseconds