(State s, int n)
| 159 | } |
| 160 | |
| 161 | static int readBits(State s, int n) { |
| 162 | if (HALF_BITNESS >= 24) { |
| 163 | return readFewBits(s, n); |
| 164 | } |
| 165 | return (n <= 16) ? readFewBits(s, n) : readManyBits(s, n); |
| 166 | } |
| 167 | |
| 168 | private static int readManyBits(State s, int n) { |
| 169 | final int low = readFewBits(s, 16); |
no test coverage detected