HomeSort by relevance Sort by last modified time
    Searched refs:INITIAL_CAPACITY (Results 1 - 8 of 8) sorted by null

  /system/core/libcutils/
array.c 23 #define INITIAL_CAPACITY (4)
50 int newCapacity = (oldCapacity == 0) ? INITIAL_CAPACITY : oldCapacity;
  /external/srec/portable/src/
ArrayListImpl.c 27 #define INITIAL_CAPACITY 16
71 return ArrayListCreateWithCapacity(self, INITIAL_CAPACITY);
  /external/chromium/third_party/icu/source/common/
unorm_it.c 29 INITIAL_CAPACITY=100
62 UChar charsBuffer[INITIAL_CAPACITY];
63 uint32_t statesBuffer[INITIAL_CAPACITY+1]; /* one more than charsBuffer[]! */
591 uni->capacity=INITIAL_CAPACITY;
  /external/icu4c/common/
unorm_it.c 29 INITIAL_CAPACITY=100
62 UChar charsBuffer[INITIAL_CAPACITY];
63 uint32_t statesBuffer[INITIAL_CAPACITY+1]; /* one more than charsBuffer[]! */
591 uni->capacity=INITIAL_CAPACITY;
  /external/icu4c/layoutex/
RunArrays.cpp 39 fCapacity = INITIAL_CAPACITY;
  /external/icu4c/layoutex/layout/
RunArrays.h 30 #define INITIAL_CAPACITY 16
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 34 static final int INITIAL_CAPACITY = 16;
74 value = new char[INITIAL_CAPACITY];
87 value = new char[count + INITIAL_CAPACITY];
649 || (wasted >= INITIAL_CAPACITY && wasted >= (count >> 1))) {
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 804 private static final int INITIAL_CAPACITY = 16;
806 new RunnableScheduledFuture[INITIAL_CAPACITY];
    [all...]

Completed in 2573 milliseconds