Searched refs:counter_stats (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstatistics.cc106 std::map<std::string, CounterStat> counter_stats; local
109 auto it = counter_stats.find(cnt.first);
110 if (it == counter_stats.end()) {
111 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}});
112 it = counter_stats.find(cnt.first);
115 CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags);
129 auto it = counter_stats.find(cnt.first);
130 CHECK_NE(it, counter_stats.end());
176 for (auto const& kv : counter_stats) {
179 auto c = Counter(uc_stat, counter_stats[k
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dstatistics.cc111 std::map< std::string, CounterStat > counter_stats; local
114 auto it = counter_stats.find(cnt.first);
115 if(it == counter_stats.end()) {
116 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}});
117 it = counter_stats.find(cnt.first);
120 CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags);
136 auto it = counter_stats.find(cnt.first);
137 CHECK_NE(it, counter_stats.end());
166 for(auto const& kv : counter_stats) {
168 auto c = Counter(uc_stat, counter_stats[k
[all...]

Completed in 75 milliseconds