Lines Matching defs:NumCounters
414 uint64_t NumCounters;
417 if ((Line++)->getAsInteger(10, NumCounters))
420 if (NumCounters == 0)
425 Record.Counts.reserve(NumCounters);
426 for (uint64_t I = 0; I < NumCounters; ++I) {
601 auto CountersSize = swap(Header.NumCounters) * getCounterTypeSize();
689 uint32_t NumCounters = swap(Data->NumCounters);
690 if (NumCounters == 0)
709 if (NumCounters > MaxNumCounters)
711 ("number of counters " + Twine(NumCounters) +
717 Record.Counts.reserve(NumCounters);
718 for (uint32_t I = 0; I < NumCounters; I++) {