(State s, int n)
| 168 | } |
| 169 | |
| 170 | private static int readManyBits(State s, int n) { |
| 171 | final int low = readFewBits(s, 16); |
| 172 | doFillBitWindow(s); |
| 173 | return low | (readFewBits(s, n - 16) << 16); |
| 174 | } |
| 175 | |
| 176 | static int initBitReader(State s) { |
| 177 | s.byteBuffer = new byte[BUFFER_SIZE]; |
no test coverage detected