HomeSort by relevance Sort by last modified time
    Searched defs:fCapacity (Results 1 - 16 of 16) sorted by null

  /external/icu/icu4c/source/tools/genrb/
ustr.h 57 int32_t fCapacity;
  /external/icu/icu4c/source/i18n/
nfrlist.h 39 uint32_t fCapacity;
44 , fCapacity(capacity) {}
66 if (fCount == fCapacity) {
67 fCapacity += 10;
68 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success
73 fCapacity = 0;
84 fCapacity = 0;
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 265 return (fFlagAndLength >= 0) ? (int32_t)sizeof(fUnion) : fUnion.fFields.fCapacity;
312 int32_t fCapacity;
  /external/icu/icu4c/source/layoutex/layout/
RunArrays.h 221 le_int32 fCapacity;
225 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
231 : UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
237 : UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count)
  /external/skia/modules/particles/include/
SkParticleEffect.h 71 int fCapacity;
  /external/skia/include/private/
SkTHash.h 28 SkTHashTable() : fCount(0), fCapacity(0) {}
31 , fCapacity(other.fCapacity)
32 , fSlots(std::move(other.fSlots)) { other.fCount = other.fCapacity = 0; }
49 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); }
64 if (4 * fCount >= 3 * fCapacity) {
65 this->resize(fCapacity > 0 ? fCapacity * 2 : 4);
73 int index = hash & (fCapacity-1);
74 for (int n = 0; n < fCapacity; n++)
    [all...]
  /external/skia/platform_tools/android/apps/skottie/src/main/cpp/
JavaInputStreamAdaptor.cpp 56 , fCapacity(capacity)
132 if (size > static_cast<size_t>(fCapacity)) {
133 requested = fCapacity;
136 // fCapacity.
202 const jint fCapacity;
  /external/skqp/include/private/
SkTHash.h 28 SkTHashTable() : fCount(0), fCapacity(0) {}
31 , fCapacity(other.fCapacity)
32 , fSlots(std::move(other.fSlots)) { other.fCount = other.fCapacity = 0; }
49 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); }
64 if (4 * fCount >= 3 * fCapacity) {
65 this->resize(fCapacity > 0 ? fCapacity * 2 : 4);
73 int index = hash & (fCapacity-1);
74 for (int n = 0; n < fCapacity; n++)
    [all...]
  /external/skqp/platform_tools/android/apps/skottie/src/main/cpp/
JavaInputStreamAdaptor.cpp 56 , fCapacity(capacity)
132 if (size > static_cast<size_t>(fCapacity)) {
133 requested = fCapacity;
136 // fCapacity.
202 const jint fCapacity;
  /external/skia/src/core/
SkRWBuffer.cpp 24 const size_t fCapacity;
26 SkBufferBlock(size_t capacity) : fNext(nullptr), fUsed(0), fCapacity(capacity) {}
30 size_t avail() const { return fCapacity - fUsed; }
40 // before spilling into the next, since the reader uses fCapacity to know how many it can read.
55 SkASSERT(fCapacity > 0);
56 SkASSERT(fUsed <= fCapacity);
126 // The reader can only access block.fCapacity (which never changes), and cannot access
175 return SkTMin(fBlock->fCapacity, fRemaining);
209 // next, since our reader will be using fCapacity (min'd against its total available) to know how
SkTDynamicHash.h 25 SkTDynamicHash() : fCount(0), fDeleted(0), fCapacity(0), fArray(nullptr) {
40 SkASSERT(fCurrentIndex <= fHash->fCapacity);
41 return fCurrentIndex == fHash->fCapacity;
67 SkASSERT(fCurrentIndex <= fHash->fCapacity);
68 return fCurrentIndex == fHash->fCapacity;
92 for (int round = 0; round < fCapacity; round++) {
93 SkASSERT(index >= 0 && index < fCapacity);
103 SkASSERT(fCapacity == 0);
124 sk_bzero(fArray, sizeof(T*)* fCapacity);
133 fCapacity = 0
    [all...]
SkWriter32.h 53 fCapacity = externalBytes;
63 if (totalRequired > fCapacity) {
254 size_t fCapacity; // Number of bytes we can write to fData.
  /external/skqp/src/core/
SkRWBuffer.cpp 24 const size_t fCapacity;
26 SkBufferBlock(size_t capacity) : fNext(nullptr), fUsed(0), fCapacity(capacity) {}
30 size_t avail() const { return fCapacity - fUsed; }
40 // before spilling into the next, since the reader uses fCapacity to know how many it can read.
55 SkASSERT(fCapacity > 0);
56 SkASSERT(fUsed <= fCapacity);
126 // The reader can only access block.fCapacity (which never changes), and cannot access
175 return SkTMin(fBlock->fCapacity, fRemaining);
209 // next, since our reader will be using fCapacity (min'd against its total available) to know how
SkTDynamicHash.h 25 SkTDynamicHash() : fCount(0), fDeleted(0), fCapacity(0), fArray(nullptr) {
40 SkASSERT(fCurrentIndex <= fHash->fCapacity);
41 return fCurrentIndex == fHash->fCapacity;
67 SkASSERT(fCurrentIndex <= fHash->fCapacity);
68 return fCurrentIndex == fHash->fCapacity;
92 for (int round = 0; round < fCapacity; round++) {
93 SkASSERT(index >= 0 && index < fCapacity);
103 SkASSERT(fCapacity == 0);
124 sk_bzero(fArray, sizeof(T*)* fCapacity);
133 fCapacity = 0
    [all...]
SkWriter32.h 53 fCapacity = externalBytes;
63 if (totalRequired > fCapacity) {
254 size_t fCapacity; // Number of bytes we can write to fData.
  /external/icu/icu4c/source/common/unicode/
unistr.h     [all...]

Completed in 1655 milliseconds