Home
last modified time | relevance | path

Searched refs:Stat1_d (Results 1 – 4 of 4) sorted by relevance

/external/google-benchmark/src/
Dcomplexity.cc167 Stat1_d real_accumulated_time_stat; in ComputeStats()
168 Stat1_d cpu_accumulated_time_stat; in ComputeStats()
169 Stat1_d bytes_per_second_stat; in ComputeStats()
170 Stat1_d items_per_second_stat; in ComputeStats()
177 Stat1_d s; in ComputeStats()
184 counter_stats.insert({cnt.first, {cnt.second, Stat1_d{}}}); in ComputeStats()
197 Stat1_d(run.real_accumulated_time / run.iterations); in ComputeStats()
199 Stat1_d(run.cpu_accumulated_time / run.iterations); in ComputeStats()
200 items_per_second_stat += Stat1_d(run.items_per_second); in ComputeStats()
201 bytes_per_second_stat += Stat1_d(run.bytes_per_second); in ComputeStats()
[all …]
Dstat.h18 typedef Stat1<double, int64_t> Stat1_d; typedef
/external/libcxx/utils/google-benchmark/src/
Dcomplexity.cc167 Stat1_d real_accumulated_time_stat; in ComputeStats()
168 Stat1_d cpu_accumulated_time_stat; in ComputeStats()
169 Stat1_d bytes_per_second_stat; in ComputeStats()
170 Stat1_d items_per_second_stat; in ComputeStats()
181 Stat1_d(run.real_accumulated_time / run.iterations, run.iterations); in ComputeStats()
183 Stat1_d(run.cpu_accumulated_time / run.iterations, run.iterations); in ComputeStats()
184 items_per_second_stat += Stat1_d(run.items_per_second, run.iterations); in ComputeStats()
185 bytes_per_second_stat += Stat1_d(run.bytes_per_second, run.iterations); in ComputeStats()
Dstat.h18 typedef Stat1<double, int64_t> Stat1_d; typedef