Home | History | Annotate | Download | only in i18n

Lines Matching refs:sampleCount

575     int32_t sampleCount = 0;
610 if (sampleCount == newSamples.getCapacity()) {
611 int32_t newCapacity = sampleCount < 20 ? 128 : sampleCount * 2;
612 if (NULL == newSamples.resize(newCapacity, sampleCount)) {
617 newSamples[sampleCount].ruleIndex = found;
618 newSamples[sampleCount].value = val;
619 ++sampleCount;
629 if (NULL == values.allocateInsteadAndCopy(sampleCount)) {
634 for (int k = 0; k < sampleCount; ++k) {