HomeSort by relevance Sort by last modified time
    Searched refs:minCapacity (Results 1 - 25 of 44) sorted by null

1 2

  /external/icu/icu4c/source/common/
appendable.cpp 58 Appendable::getAppendBuffer(int32_t minCapacity,
62 if(minCapacity<1 || scratchCapacity<minCapacity) {
charstr.cpp 82 char *CharString::getAppendBuffer(int32_t minCapacity,
91 if(appendCapacity>=minCapacity) {
95 if(ensureCapacity(len+minCapacity+1, len+desiredCapacityHint+1, errorCode)) {
charstr.h 85 * resultCapacity. Guarantees resultCapacity>=minCapacity if U_SUCCESS().
95 * @param minCapacity required minimum capacity of the returned buffer;
103 char *getAppendBuffer(int32_t minCapacity,
unistr.cpp 485 // fLength>0 and not an "open" src.getBuffer(minCapacity)
1173 // do not modify a string that has an "open" getBuffer(minCapacity)
1210 // do not modify a string that has an "open" getBuffer(minCapacity)
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
CircularArray.java 51 * Create a CircularArray with capacity for at least minCapacity elements.
53 * @param minCapacity The minimum capacity required for the circular array.
55 public CircularArray(int minCapacity) {
56 if (minCapacity <= 0) {
59 int arrayCapacity = minCapacity;
60 // If minCapacity isn't a power of 2, round up to the next highest power
62 if (Integer.bitCount(minCapacity) != 1) {
63 arrayCapacity = 1 << (Integer.highestOneBit(minCapacity) + 1);
  /external/icu/icu4c/source/common/unicode/
appendable.h 97 * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
99 * scratchCapacity>=minCapacity.
128 * @param minCapacity required minimum capacity of the returned buffer;
136 * @return a buffer with *resultCapacity>=minCapacity
139 virtual UChar *getAppendBuffer(int32_t minCapacity,
202 * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
204 * scratchCapacity>=minCapacity.
210 * @param minCapacity required minimum capacity of the returned buffer;
218 * @return a buffer with *resultCapacity>=minCapacity
221 virtual UChar *getAppendBuffer(int32_t minCapacity,
    [all...]
unistr.h     [all...]
  /frameworks/base/core/java/android/util/
LongArray.java 95 final int minCapacity = currentSize + count;
96 if (minCapacity >= mValues.length) {
99 final int newCapacity = targetCap > minCapacity ? targetCap : minCapacity;
  /external/chromium_org/third_party/icu/source/common/
charstr.cpp 82 char *CharString::getAppendBuffer(int32_t minCapacity,
91 if(appendCapacity>=minCapacity) {
95 if(ensureCapacity(len+minCapacity+1, len+desiredCapacityHint+1, errorCode)) {
charstr.h 85 * resultCapacity. Guarantees resultCapacity>=minCapacity if U_SUCCESS().
95 * @param minCapacity required minimum capacity of the returned buffer;
103 char *getAppendBuffer(int32_t minCapacity,
unistr.cpp 487 // fLength>0 and not an "open" src.getBuffer(minCapacity)
1093 // do not modify a string that has an "open" getBuffer(minCapacity)
1130 // do not modify a string that has an "open" getBuffer(minCapacity)
    [all...]
  /external/srec/portable/src/
ArrayListImpl.c 29 ESR_ReturnCode ArrayListCreateWithCapacity(ArrayList **self, size_t minCapacity)
54 impl->contents = MALLOC(minCapacity * sizeof(void*), MTAG);
60 impl->capacity = minCapacity;
61 impl->minCapacity = minCapacity;
122 if (impl->capacity > impl->minCapacity &&
  /external/srec/portable/include/
ArrayListImpl.h 59 size_t minCapacity;
ArrayList.h 175 * @param minCapacity Minimum capacity of the array.
178 PORTABLE_API ESR_ReturnCode ArrayListCreateWithCapacity(ArrayList** self, size_t minCapacity);
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java     [all...]
TimSort.java     [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp     [all...]
  /external/robolectric/lib/main/
xpp3-1.1.4c.jar 
  /external/smack/asmack-master/lib/
xpp3-1.1.4c.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar 
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar 
  /external/chromium_org/third_party/icu/source/common/unicode/
unistr.h     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol.cpp 284 ensureCEsCapacity(collIterate *data, int32_t minCapacity) {
291 if(minCapacity <= oldCapacity) {
295 return reallocCEs(data, minCapacity > oldCapacity ? minCapacity : oldCapacity);
    [all...]

Completed in 1372 milliseconds

1 2