Searched refs:inflatedBuffer (Results 1 – 2 of 2) sorted by relevance
94 private byte[] inflatedBuffer; field in MessageDeframer321 if (inflatedBuffer == null || inflatedIndex == inflatedBuffer.length) { in readRequiredBytes()322 inflatedBuffer = new byte[Math.min(missingBytes, MAX_BUFFER_SIZE)]; in readRequiredBytes()325 int bytesToRead = Math.min(missingBytes, inflatedBuffer.length - inflatedIndex); in readRequiredBytes()326 int n = fullStreamDecompressor.inflateBytes(inflatedBuffer, inflatedIndex, bytesToRead); in readRequiredBytes()333 nextFrame.addBuffer(ReadableBuffers.wrap(inflatedBuffer, inflatedIndex, n)); in readRequiredBytes()
42 private final ParsableByteArray inflatedBuffer; field in PgsDecoder50 inflatedBuffer = new ParsableByteArray(); in PgsDecoder()74 if (Util.inflate(buffer, inflatedBuffer, inflater)) { in maybeInflateData()75 buffer.reset(inflatedBuffer.data, inflatedBuffer.limit()); in maybeInflateData()