3 references to Decompress
System.IO.Compression (3)
System\IO\Compression\Zstandard\ZstandardDecoder.cs (1)
165/// <see cref="Reset" /> before calling <see cref="Decompress" /> on the rest of the data.
System\IO\Compression\Zstandard\ZstandardStream.Decompress.cs (2)
65OperationStatus status = _decoder.Decompress(_buffer.ActiveSpan, destination, out int bytesConsumed, out bytesWritten); 258if (_decoder.Decompress(_buffer.ActiveSpan.Slice(0, ZstdFrameMagicLength), _buffer.AvailableSpan.Slice(0, 1), out int bytesConsumed, out _) == OperationStatus.NeedMoreData)