3 writes to _arrayPoolBuffer
System.IO.Compression (3)
System\IO\Compression\DeflateZLib\DeflateStream.cs (3)
932_arrayPoolBuffer = ArrayPool<byte>.Shared.Rent(bufferSize); 975_arrayPoolBuffer = null!; 1016_arrayPoolBuffer = null!;
16 references to _arrayPoolBuffer
System.IO.Compression (16)
System\IO\Compression\DeflateZLib\DeflateStream.cs (16)
944int bytesRead = _deflateStream._inflater.Inflate(_arrayPoolBuffer, 0, _arrayPoolBuffer.Length); 947await _destination.WriteAsync(new ReadOnlyMemory<byte>(_arrayPoolBuffer, 0, bytesRead), _cancellationToken).ConfigureAwait(false); 957await _deflateStream._stream.CopyToAsync(this, _arrayPoolBuffer.Length, _cancellationToken).ConfigureAwait(false); 974ArrayPool<byte>.Shared.Return(_arrayPoolBuffer); 987int bytesRead = _deflateStream._inflater.Inflate(_arrayPoolBuffer, 0, _arrayPoolBuffer.Length); 990_destination.Write(_arrayPoolBuffer, 0, bytesRead); 1000_deflateStream._stream.CopyTo(this, _arrayPoolBuffer.Length); 1015ArrayPool<byte>.Shared.Return(_arrayPoolBuffer); 1022Debug.Assert(buffer != _arrayPoolBuffer); 1055int bytesRead = _deflateStream._inflater.Inflate(new Span<byte>(_arrayPoolBuffer)); 1058await _destination.WriteAsync(new ReadOnlyMemory<byte>(_arrayPoolBuffer, 0, bytesRead), cancellationToken).ConfigureAwait(false); 1070Debug.Assert(buffer != _arrayPoolBuffer); 1091int bytesRead = _deflateStream._inflater.Inflate(new Span<byte>(_arrayPoolBuffer)); 1094_destination.Write(_arrayPoolBuffer, 0, bytesRead);