Lines Matching refs:NumCounters
288 uint64_t NumCounters; in readNextRecord() local
291 if ((Line++)->getAsInteger(10, NumCounters)) in readNextRecord()
294 if (NumCounters == 0) in readNextRecord()
299 Record.Counts.reserve(NumCounters); in readNextRecord()
300 for (uint64_t I = 0; I < NumCounters; ++I) { in readNextRecord()
473 uint32_t NumCounters = swap(Data->NumCounters); in readRawCounts() local
474 if (NumCounters == 0) in readRawCounts()
493 if (NumCounters > MaxNumCounters) in readRawCounts()
495 ("number of counters " + Twine(NumCounters) + in readRawCounts()
501 Record.Counts.reserve(NumCounters); in readRawCounts()
502 for (uint32_t I = 0; I < NumCounters; I++) { in readRawCounts()