Home
last modified time | relevance | path

Searched refs:codePointNumBatches (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/i18n/
Dnumparse_affixes.cpp130 : codePointCount(0), codePointNumBatches(0) {} in CodePointMatcherWarehouse()
134 for (int32_t i = 0; i < codePointNumBatches; i++) { in ~CodePointMatcherWarehouse()
143 codePointNumBatches(src.codePointNumBatches) {} in CodePointMatcherWarehouse()
150 codePointNumBatches = src.codePointNumBatches; in operator =()
158 int32_t totalCapacity = CODE_POINT_STACK_CAPACITY + codePointNumBatches * CODE_POINT_BATCH_SIZE; in nextCodePointMatcher()
162 if (codePointNumBatches >= codePointsOverflow.getCapacity()) { in nextCodePointMatcher()
164 codePointsOverflow.resize(codePointNumBatches * 2, codePointNumBatches); in nextCodePointMatcher()
166 codePointsOverflow[codePointNumBatches++] = nextBatch; in nextCodePointMatcher()
168 …return codePointsOverflow[codePointNumBatches - 1][(codePointCount++ - CODE_POINT_STACK_CAPACITY) % in nextCodePointMatcher()
Dnumparse_affixes.h90 int32_t codePointNumBatches; // Number of batches in codePointsOverflow variable