Lines Matching refs:NumCounters
409 uint64_t NumCounters; in readNextRecord() local
412 if ((Line++)->getAsInteger(10, NumCounters)) in readNextRecord()
415 if (NumCounters == 0) in readNextRecord()
420 Record.Counts.reserve(NumCounters); in readNextRecord()
421 for (uint64_t I = 0; I < NumCounters; ++I) { in readNextRecord()
580 auto CountersSize = swap(Header.NumCounters) * getCounterTypeSize(); in readHeader()
650 uint32_t NumCounters = swap(Data->NumCounters); in readRawCounts() local
651 if (NumCounters == 0) in readRawCounts()
670 if (NumCounters > MaxNumCounters) in readRawCounts()
672 ("number of counters " + Twine(NumCounters) + in readRawCounts()
678 Record.Counts.reserve(NumCounters); in readRawCounts()
679 for (uint32_t I = 0; I < NumCounters; I++) { in readRawCounts()