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

1 2

  /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();
unistr_case.cpp 139 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
143 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
150 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
155 newLength = ustr_foldCase(csp, getArrayStart(), 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...]
cmemory.h 220 int32_t getCapacity() const { return capacity; }
228 * @return getAlias()+getCapacity()
386 int32_t getCapacity() const { return capacity; }
unistr.cpp 431 u_strFromUTF32WithSub(utf16, result.getCapacity(), &length16,
1174 u_strFromUTF8WithSub(utf16, getCapacity(), &length16,
    [all...]
uts46.cpp 600 int32_t capacity=dest.getCapacity();
619 capacity=dest.getCapacity();
701 unicodeBuffer, fromPunycode.getCapacity(),
712 unicodeBuffer, fromPunycode.getCapacity(),
844 buffer+4, punycode.getCapacity()-4,
    [all...]
unistr_cnv.cpp 400 ucnv_toUnicode(converter, &myTarget, array + getCapacity(),
normalizer2impl.cpp 46 remainingCapacity=str.getCapacity()-length;
162 remainingCapacity=str.getCapacity();
172 remainingCapacity=str.getCapacity();
183 int32_t doubleCapacity=2*str.getCapacity();
198 remainingCapacity=str.getCapacity()-length;
    [all...]
rbbitblb.cpp     [all...]
  /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() {
  /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/
digitlst.cpp 75 fContext.digits = fStorage.getCapacity();
110 if (other.fStorage.getCapacity() > fStorage.getCapacity()) {
111 fDecNumber = fStorage.resize(other.fStorage.getCapacity());
115 fContext.digits = fStorage.getCapacity();
728 // fContext.digits == fStorage.getCapacity()
729 decNumber *t = fStorage.resize(numDigits, fStorage.getCapacity());
828 decNumber *newBuffer = fStorage.resize(requestedCapacity, fStorage.getCapacity());
  /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()
  /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);
dcfmtest.cpp 110 if (len+1 > buf.getCapacity()) {
134 int32_t capacity = buf.getCapacity();
  /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%
  /external/llvm/lib/CodeGen/
RenderMachineFunction.h 154 unsigned getCapacity(const TargetRegisterClass *trc) const;
RenderMachineFunction.cpp 444 unsigned TargetRegisterExtraInfo::getCapacity(
514 return (getPressureAtSlot(trc, i) > getCapacity(trc));
    [all...]

Completed in 311 milliseconds

1 2