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