Lines Matching refs:Counters
39 SmallVectorImpl<uint64_t> &&Counters) { in getOrEmplace() argument
41 Callsites[Index].insert({G, PGOCtxProfContext(G, std::move(Counters))}); in getOrEmplace()
97 std::optional<SmallVector<uint64_t, 16>> Counters; in readProfile() local
109 return Guid.has_value() && Counters.has_value() && in readProfile()
137 case PGOCtxProfileRecords::Counters: in readProfile()
138 Counters = std::move(RecordValues); in readProfile()
139 if (Counters->empty()) in readProfile()
165 PGOCtxProfContext Ret(*Guid, std::move(*Counters), TotalEntryCount, in readProfile()
308 const SmallVectorImpl<uint64_t> &Counters, in toYaml() argument
330 for (size_t I = 0U, E = Counters.size(); I < E; ++I) {
332 uint64_t V = Counters[I];
359 for (const auto &[Guid, Counters] : Flat) { in toYaml()
361 toYaml(Out, Guid, Counters, {}); in toYaml()