| 205 | }; |
| 206 | |
| 207 | static void BitBlockCounterSum(benchmark::State& state) { |
| 208 | UnaryBitBlockBenchmark(state, /*offset=*/0) |
| 209 | .BenchBitBlockCounter([](BitBlockCounter* counter) { return counter->NextWord(); }); |
| 210 | } |
| 211 | |
| 212 | static void BitBlockCounterSumWithOffset(benchmark::State& state) { |
| 213 | UnaryBitBlockBenchmark(state, /*offset=*/4) |
nothing calls this directly
no test coverage detected