(State s)
| 205 | } |
| 206 | |
| 207 | static int reload(State s) { |
| 208 | if (s.bitOffset == BITNESS) { |
| 209 | return prepare(s); |
| 210 | } |
| 211 | return BROTLI_OK; |
| 212 | } |
| 213 | |
| 214 | static int jumpToByteBoundary(State s) { |
| 215 | final int padding = (BITNESS - s.bitOffset) & 7; |
no test coverage detected