(State s)
| 767 | } |
| 768 | |
| 769 | private static void decodeDistanceBlockSwitch(State s) { |
| 770 | s.distanceBlockLength = decodeBlockTypeAndLength(s, 2, s.numDistanceBlockTypes); |
| 771 | s.distContextMapSlice = s.rings[9] << DISTANCE_CONTEXT_BITS; |
| 772 | } |
| 773 | |
| 774 | private static void maybeReallocateRingBuffer(State s) { |
| 775 | int newSize = s.maxRingBufferSize; |
no test coverage detected