Lines Matching defs:NumCounters
425 uint64_t NumCounters;
428 if ((Line++)->getAsInteger(10, NumCounters))
431 if (NumCounters == 0)
436 Record.Counts.reserve(NumCounters);
437 for (uint64_t I = 0; I < NumCounters; ++I) {
612 auto CountersSize = swap(Header.NumCounters) * getCounterTypeSize();
721 uint32_t NumCounters = swap(Data->NumCounters);
722 if (NumCounters == 0)
741 if (NumCounters > MaxNumCounters)
743 ("number of counters " + Twine(NumCounters) +
749 Record.Counts.reserve(NumCounters);
750 for (uint32_t I = 0; I < NumCounters; I++) {