Home | History | Annotate | Download | only in common

Lines Matching defs:GROW_EXTRA

58 #define GROW_EXTRA START_EXTRA
198 len(0), capacity(o.isFrozen() ? o.len : o.len + GROW_EXTRA), list(0),
222 len(0), capacity(o.len + GROW_EXTRA), list(0),
1580 UChar32* temp = (UChar32*) uprv_realloc(list, sizeof(UChar32) * (newLen + GROW_EXTRA));
1587 capacity = newLen + GROW_EXTRA;
1594 UChar32* temp = (UChar32*) uprv_realloc(buffer, sizeof(UChar32) * (newLen + GROW_EXTRA));
1601 bufferCapacity = newLen + GROW_EXTRA;
2091 // Small modification: Don't shrink if the savings would be tiny (<=GROW_EXTRA).
2098 if (capacity > (len + GROW_EXTRA)) {