Searched refs:counter_stats (Results 1 – 1 of 1) sorted by relevance
116 std::map<std::string, CounterStat> counter_stats; in ComputeStats() local119 auto it = counter_stats.find(cnt.first); in ComputeStats()120 if (it == counter_stats.end()) { in ComputeStats()121 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}}); in ComputeStats()122 it = counter_stats.find(cnt.first); in ComputeStats()125 BM_CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags); in ComputeStats()139 auto it = counter_stats.find(cnt.first); in ComputeStats()140 BM_CHECK_NE(it, counter_stats.end()); in ComputeStats()194 for (auto const& kv : counter_stats) { in ComputeStats()197 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags, in ComputeStats()[all …]