(State s)
| 140 | } |
| 141 | |
| 142 | static int peekBits(State s) { |
| 143 | if (BITNESS == 64) { |
| 144 | return (int) Utils.shr64(s.accumulator64, s.bitOffset); |
| 145 | } else { |
| 146 | return Utils.shr32(s.accumulator32, s.bitOffset); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Fetches bits from accumulator. |
no test coverage detected