Searched refs:GROW_EXTRA (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/
H A Duniset.cpp58 #define GROW_EXTRA START_EXTRA macro
198 len(0), capacity(o.isFrozen() ? o.len : o.len + GROW_EXTRA), list(0),
222 len(0), capacity(o.len + GROW_EXTRA), list(0),
1657 UChar32* temp = (UChar32*) uprv_realloc(list, sizeof(UChar32) * (newLen + GROW_EXTRA));
1664 capacity = newLen + GROW_EXTRA;
1671 UChar32* temp = (UChar32*) uprv_realloc(buffer, sizeof(UChar32) * (newLen + GROW_EXTRA));
1678 bufferCapacity = newLen + GROW_EXTRA;
2168 // Small modification: Don't shrink if the savings would be tiny (<=GROW_EXTRA).
2175 if (capacity > (len + GROW_EXTRA)) {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSet.java336 private static final int GROW_EXTRA = START_EXTRA; // extra amount for growth. Must be >= 0 field in class:UnicodeSet
1272 int[] temp = new int[len + 2 + GROW_EXTRA];
2844 int[] temp = new int[newLen + GROW_EXTRA];
2851 buffer = new int[newLen + GROW_EXTRA];
3897 // Small modification: Don't shrink if the savings would be tiny (<=GROW_EXTRA).
3901 if (list.length > (len + GROW_EXTRA)) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSet.java340 private static final int GROW_EXTRA = START_EXTRA; // extra amount for growth. Must be >= 0 field in class:UnicodeSet
1303 int[] temp = new int[len + 2 + GROW_EXTRA];
2917 int[] temp = new int[newLen + GROW_EXTRA];
2924 buffer = new int[newLen + GROW_EXTRA];
3988 // Small modification: Don't shrink if the savings would be tiny (<=GROW_EXTRA).
3992 if (list.length > (len + GROW_EXTRA)) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 138 milliseconds