| 200 | |
| 201 | template <Compression::type COMPRESSION> |
| 202 | static void ReferenceStreamingDecompression( |
| 203 | benchmark::State& state) { // NOLINT non-const reference |
| 204 | auto data = MakeCompressibleData(8 * 1024 * 1024); // 8 MB |
| 205 | |
| 206 | StreamingDecompression(COMPRESSION, data, state); |
| 207 | } |
| 208 | |
| 209 | template <Compression::type COMPRESSION> |
| 210 | static void ReferenceDecompression( |
nothing calls this directly
no test coverage detected