Home
last modified time | relevance | path

Searched refs:fReserveCount (Results 1 – 1 of 1) sorted by relevance

/external/skia/include/core/
DSkTArray.h66 fReserveCount = gMIN_ALLOC_COUNT; in SkTArray()
402 fReserveCount = (preAllocOrReserveCount > 0) ? in init()
406 if (fReserveCount >= fCount && in init()
408 fAllocCount = fReserveCount; in init()
411 fAllocCount = SkMax32(fCount, fReserveCount); in init()
443 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount); in checkRealloc()
450 if (fAllocCount == fReserveCount && fPreAllocMemArray) { in checkRealloc()
475 int fReserveCount; variable