| 78 | } |
| 79 | |
| 80 | static void FastRandom_32bit(benchmark::State& state) |
| 81 | { |
| 82 | FastRandomContext rng(true); |
| 83 | uint32_t x = 0; |
| 84 | while (state.KeepRunning()) { |
| 85 | x += rng.rand32(); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | static void FastRandom_1bit(benchmark::State& state) |
| 90 | { |
nothing calls this directly
no test coverage detected