Searched refs:fReserveCount (Results 1 – 1 of 1) sorted by relevance
30 fReserveCount = gMIN_ALLOC_COUNT; in SkTArray()373 fReserveCount = (preAllocOrReserveCount > 0) ? in init()377 if (fReserveCount >= fCount && in init()379 fAllocCount = fReserveCount; in init()382 fAllocCount = SkMax32(fCount, fReserveCount); in init()442 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount); in checkRealloc()449 if (fAllocCount == fReserveCount && fPreAllocMemArray) { in checkRealloc()464 int fReserveCount; variable