Home | History | Annotate | Download | only in i18n

Lines Matching defs:sampleCount

564     int32_t sampleCount = 0;
599 if (sampleCount == newSamples.getCapacity()) {
600 int32_t newCapacity = sampleCount < 20 ? 128 : sampleCount * 2;
601 if (NULL == newSamples.resize(newCapacity, sampleCount)) {
606 newSamples[sampleCount].ruleIndex = found;
607 newSamples[sampleCount].value = val;
608 ++sampleCount;
618 if (NULL == values.allocateInsteadAndCopy(sampleCount)) {
623 for (int k = 0; k < sampleCount; ++k) {