Searched refs:counter_stats (Results 1 – 2 of 2) sorted by relevance
/external/google-benchmark/src/ |
D | statistics.cc | 106 std::map<std::string, CounterStat> counter_stats; in ComputeStats() local 109 auto it = counter_stats.find(cnt.first); in ComputeStats() 110 if (it == counter_stats.end()) { in ComputeStats() 111 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}}); in ComputeStats() 112 it = counter_stats.find(cnt.first); in ComputeStats() 115 CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags); in ComputeStats() 129 auto it = counter_stats.find(cnt.first); in ComputeStats() 130 CHECK_NE(it, counter_stats.end()); in ComputeStats() 176 for (auto const& kv : counter_stats) { in ComputeStats() 179 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags, in ComputeStats() [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | statistics.cc | 106 std::map<std::string, CounterStat> counter_stats; in ComputeStats() local 109 auto it = counter_stats.find(cnt.first); in ComputeStats() 110 if (it == counter_stats.end()) { in ComputeStats() 111 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}}); in ComputeStats() 112 it = counter_stats.find(cnt.first); in ComputeStats() 115 CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags); in ComputeStats() 129 auto it = counter_stats.find(cnt.first); in ComputeStats() 130 CHECK_NE(it, counter_stats.end()); in ComputeStats() 176 for (auto const& kv : counter_stats) { in ComputeStats() 179 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags, in ComputeStats() [all …]
|