| 87 | int input_size; |
| 88 | |
| 89 | BenchmarkParams(int bit_width, int max_run_length) |
| 90 | : bit_width(bit_width), |
| 91 | max_run_length(max_run_length), |
| 92 | // Add some extra space for the possible overhead of RLE. |
| 93 | input_buffer(3 * NUM_OUT_VALUES * bit_width / 8) { |
| 94 | input_size = FillWithRle(&input_buffer, bit_width, max_run_length); |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 |
nothing calls this directly
no test coverage detected