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

1 2 3

  /external/icu4c/common/
charstr.cpp 62 if(sLength>=(buffer.getCapacity()-len)) {
69 sLength>=(buffer.getCapacity()-len)
90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL
96 resultCapacity=buffer.getCapacity()-len-1;
105 len+=s.extract(0, 0x7fffffff, buffer.getAlias()+len, buffer.getCapacity()-len, US_INV);
116 if(capacity>buffer.getCapacity()) {
118 desiredCapacityHint=capacity+buffer.getCapacity();
locdispnames.cpp 64 buffer, result.getCapacity(),
76 buffer, result.getCapacity(),
104 buffer, result.getCapacity(),
116 buffer, result.getCapacity(),
144 buffer, result.getCapacity(),
156 buffer, result.getCapacity(),
184 buffer, result.getCapacity(),
196 buffer, result.getCapacity(),
224 buffer, result.getCapacity(),
236 buffer, result.getCapacity(),
    [all...]
unistr_case.cpp 129 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
cmemory.h 267 int32_t getCapacity() const { return capacity; }
275 * @return getAlias()+getCapacity()
442 int32_t getCapacity() const { return capacity; }
unistr.cpp 434 u_strFromUTF32WithSub(utf16, result.getCapacity(), &length16,
1221 u_strFromUTF8WithSub(utf16, getCapacity(), &length16,
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 102 * larger than {@link #getCapacity()} and does nothing else.
108 if (getCapacity() < entryCount) {
109 throw new DirectoryFullException(getCapacity(), entryCount);
AbstractDirectory.java 149 public final int getCapacity() {
215 getCapacity() * FatDirectoryEntry.SIZE);
246 getCapacity() * FatDirectoryEntry.SIZE);
251 for (int i=0; i < getCapacity(); i++) {
271 if (getSize() == getCapacity()) {
272 changeSize(getCapacity() + 1);
281 if (getSize() + entries.length > getCapacity()) {
ClusterChainDirectory.java 131 getCapacity(), entryCount);
  /cts/suite/audio_quality/lib/src/audio/
AudioSignalFactory.cpp 42 buffer->setSize(buffer->getCapacity());
66 buffer->setSize(buffer->getCapacity());
86 buffer->setSize(buffer->getCapacity());
AudioProtocol.cpp 159 if (len > (int)param->mBuffer->getCapacity()) {
160 LOGE("received data %d exceeding buffer capacity %d", len, param->mBuffer->getCapacity());
  /external/replicaisland/src/com/replica/replicaisland/
ObjectPool.java 60 return mAvailable.getCapacity() - mAvailable.getCount();
SpriteAnimation.java 46 assert frames.getCount() == frames.getCapacity();
FixedSizeArray.java 29 * larger than getCount() but smaller than getCapacity() can't be used on their own.
264 public int getCapacity() {
  /external/icu4c/i18n/
sortkey.cpp 63 (count > getCapacity() && reallocate(count, 0) == NULL)) {
84 if (length > getCapacity() && reallocate(length, 0) == NULL) {
113 // U_ASSERT(newLength >= 0 && newLength <= getCapacity());
157 if (length > getCapacity() && reallocate(length, 0) == NULL) {
digitlst.cpp 75 fContext.digits = fStorage.getCapacity();
109 if (other.fStorage.getCapacity() > fStorage.getCapacity()) {
110 fDecNumber = fStorage.resize(other.fStorage.getCapacity());
114 fContext.digits = fStorage.getCapacity();
770 // fContext.digits == fStorage.getCapacity()
771 decNumber *t = fStorage.resize(numDigits, fStorage.getCapacity());
889 decNumber *newBuffer = fStorage.resize(requestedCapacity, fStorage.getCapacity());
  /cts/suite/audio_quality/lib/include/audio/
Buffer.h 39 inline size_t getCapacity() {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 57 public int getCapacity() {
227 + getCapacity();
Frame.java 62 public int getCapacity() {
  /external/icu4c/i18n/unicode/
sortkey.h 260 int32_t getCapacity() const {
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 127 public int getCapacity() {
ConnPoolByRoute.java 305 boolean hasCapacity = rospl.getCapacity() > 0;
308 log.debug("Available capacity: " + rospl.getCapacity()
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 87 public synchronized int getCapacity() {
SparseArrayBitmapPool.java 94 public synchronized int getCapacity() {
  /external/icu4c/test/intltest/
nptrans.cpp 208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
  /external/icu4c/tools/toolutil/
xmlparser.cpp 220 &pu, buffer+src.getCapacity(),
288 cnv, &pu, buffer+src.getCapacity(),
294 capacity=(3*src.getCapacity())/2; // increase capacity by 50%

Completed in 475 milliseconds

1 2 3