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