| 69 | } |
| 70 | |
| 71 | static void SipHash_32b(benchmark::State& state) |
| 72 | { |
| 73 | uint256 x; |
| 74 | uint64_t k1 = 0; |
| 75 | while (state.KeepRunning()) { |
| 76 | *((uint64_t*)x.begin()) = SipHashUint256(0, ++k1, x); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | static void FastRandom_32bit(benchmark::State& state) |
| 81 | { |
nothing calls this directly
no test coverage detected