Home | History | Annotate | Download | only in test

Lines Matching full:benchmark

5 #include "benchmark/benchmark.h"
15 void BM_empty(benchmark::State& state) {
21 BENCHMARK(BM_empty);
25 void BM_old_arg_range_interface(benchmark::State& state) {
31 BENCHMARK(BM_old_arg_range_interface)->ArgPair(1, 2)->RangePair(5, 5, 6, 6);
34 void BM_template2(benchmark::State& state) {
40 void BM_template1(benchmark::State& state) {
47 struct BM_Fixture : public ::benchmark::Fixture {
50 BENCHMARK_TEMPLATE_F(BM_Fixture, BM_template1, long)(benchmark::State& state) {
53 BENCHMARK_TEMPLATE1_F(BM_Fixture, BM_template2, int)(benchmark::State& state) {
57 void BM_counters(benchmark::State& state) {
61 BENCHMARK(BM_counters);