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

1 2 3 4 5

  /external/icu/icu4c/source/common/
charstr.cpp 74 if(sLength>=(buffer.getCapacity()-len)) {
81 sLength>=(buffer.getCapacity()-len)
102 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL
108 resultCapacity=buffer.getCapacity()-len-1;
124 len+=s.extract(0, 0x7fffffff, buffer.getAlias()+len, buffer.getCapacity()-len, US_INV);
135 if(capacity>buffer.getCapacity()) {
137 desiredCapacityHint=capacity+buffer.getCapacity();
locdispnames.cpp 66 buffer, result.getCapacity(),
78 buffer, result.getCapacity(),
106 buffer, result.getCapacity(),
118 buffer, result.getCapacity(),
146 buffer, result.getCapacity(),
158 buffer, result.getCapacity(),
186 buffer, result.getCapacity(),
198 buffer, result.getCapacity(),
226 buffer, result.getCapacity(),
238 buffer, result.getCapacity(),
    [all...]
unistr_case.cpp 131 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
  /frameworks/av/media/libaaudio/src/fifo/
FifoControllerBase.h 113 fifo_frames_t getCapacity() const {
  /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();
  /external/icu/icu4c/source/i18n/
sortkey.cpp 65 (count > getCapacity() && reallocate(count, 0) == NULL)) {
86 if (length > getCapacity() && reallocate(length, 0) == NULL) {
115 // U_ASSERT(newLength >= 0 && newLength <= getCapacity());
159 if (length > getCapacity() && reallocate(length, 0) == NULL) {
digitlst.cpp 99 fContext.digits = fStorage.getCapacity();
133 if (other.fStorage.getCapacity() > fStorage.getCapacity()) {
134 fDecNumber = fStorage.resize(other.fStorage.getCapacity());
138 fContext.digits = fStorage.getCapacity();
812 // fContext.digits == fStorage.getCapacity()
813 decNumber *t = fStorage.resize(numDigits, fStorage.getCapacity());
934 decNumber *newBuffer = fStorage.resize(requestedCapacity, fStorage.getCapacity());
    [all...]
collationkeys.cpp 128 if(len < buffer.getCapacity() || ensureCapacity(1)) {
139 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) {
152 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) {
172 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) {
187 int32_t newCapacity = 2 * buffer.getCapacity();
  /cts/suite/audio_quality/lib/include/audio/
Buffer.h 39 inline size_t getCapacity() {
  /external/deqp/framework/delibs/decpp/
deMemPool.hpp 49 deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE_TRUE : DE_FALSE); }
  /external/pdfium/third_party/bigint/
BigUnsignedInABase.hh 109 using NumberlikeArray<Digit>::getCapacity;
BigInteger.hh 93 Index getCapacity() const { return mag.getCapacity(); }
NumberlikeArray.hh 79 Index getCapacity() const { return cap; }
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 55 public int getCapacity() {
225 + getCapacity();
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 264 int32_t getCapacity() const {
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 132 public int getCapacity() {
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 106 public synchronized int getCapacity() {
  /external/icu/icu4c/source/test/intltest/
nptrans.cpp 210 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
218 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
  /frameworks/base/graphics/java/android/graphics/drawable/
LevelListDrawable.java 187 mLows = new int[getCapacity()];
188 mHighs = new int[getCapacity()];

Completed in 1086 milliseconds

1 2 3 4 5