Lines Matching full:counters

22 // ------------------------- Simple Counters Output ------------------------ //
28 state.counters["foo"] = 1; in BM_Counters_Simple()
29 state.counters["bar"] = 2 * (double)state.iterations(); in BM_Counters_Simple()
56 // --------------------- Counters+Items+Bytes/s Output --------------------- //
65 state.counters["foo"] = 1; in BM_Counters_WithBytesAndItemsPSec()
66 state.counters["bar"] = ++num_calls1; in BM_Counters_WithBytesAndItemsPSec()
103 // ------------------------- Rate Counters Output -------------------------- //
110 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate()
111 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate()
139 // ------------------------- Thread Counters Output ------------------------ //
145 state.counters["foo"] = 1; in BM_Counters_Threads()
146 state.counters["bar"] = 2; in BM_Counters_Threads()
174 // ---------------------- ThreadAvg Counters Output ------------------------ //
181 state.counters["foo"] = bm::Counter{1, bm::Counter::kAvgThreads}; in BM_Counters_AvgThreads()
182 state.counters["bar"] = bm::Counter{2, bm::Counter::kAvgThreads}; in BM_Counters_AvgThreads()
211 // ---------------------- ThreadAvg Counters Output ------------------------ //
218 state.counters["foo"] = bm::Counter{1, bm::Counter::kAvgThreadsRate}; in BM_Counters_AvgThreadsRate()
219 state.counters["bar"] = bm::Counter{2, bm::Counter::kAvgThreadsRate}; in BM_Counters_AvgThreadsRate()
248 // ------------------- IterationInvariant Counters Output ------------------ //
255 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsIterationInvariant}; in BM_Counters_IterationInvariant()
256 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsIterationInvariant}; in BM_Counters_IterationInvariant()
286 // ----------------- IterationInvariantRate Counters Output ---------------- //
293 state.counters["foo"] = in BM_Counters_kIsIterationInvariantRate()
295 state.counters["bar"] = in BM_Counters_kIsIterationInvariantRate()
328 // ------------------- AvgIterations Counters Output ------------------ //
335 state.counters["foo"] = bm::Counter{1, bm::Counter::kAvgIterations}; in BM_Counters_AvgIterations()
336 state.counters["bar"] = bm::Counter{2, bm::Counter::kAvgIterations}; in BM_Counters_AvgIterations()
365 // ----------------- AvgIterationsRate Counters Output ---------------- //
372 state.counters["foo"] = bm::Counter{1, bm::Counter::kAvgIterationsRate}; in BM_Counters_kAvgIterationsRate()
373 state.counters["bar"] = in BM_Counters_kAvgIterationsRate()