Home | History | Annotate | Download | only in performance

Lines Matching full:benchmark

28 #include <benchmark/benchmark.h>
70 static void BM_sendVec(benchmark::State& state, sp<IBenchmark> service) {
84 static void BM_sendVec_passthrough(benchmark::State& state) {
88 state.SkipWithError("Failed to retrieve benchmark service.");
91 state.SkipWithError("Benchmark service is remote.");
96 static void BM_sendVec_binderize(benchmark::State& state) {
100 state.SkipWithError("Failed to retrieve benchmark service.");
103 state.SkipWithError("Unable to fetch remote benchmark service.");
127 BENCHMARK(BM_sendVec_binderize)->RangeMultiplier(2)->Range(4, 65536);
129 BENCHMARK(BM_sendVec_passthrough)->RangeMultiplier(2)->Range(4, 65536);
132 ::benchmark::Initialize(&argc, argv);
137 ::benchmark::RunSpecifiedBenchmarks();