1 write to _realSize
System.Formats.Tar (1)
System\Formats\Tar\GnuSparseStream.cs (1)
52
_realSize
= realSize;
10 references to _realSize
System.Formats.Tar (10)
System\Formats\Tar\GnuSparseStream.cs (10)
89
if (offset < previousEnd || offset >
_realSize
|| length >
_realSize
- offset)
118
return
_realSize
;
155
SeekOrigin.End =>
_realSize
+ offset,
182
if (destination.IsEmpty || _virtualPosition >=
_realSize
)
187
int toRead = (int)Math.Min(destination.Length,
_realSize
- _virtualPosition);
199
long nextSegStart = ~segIdx < _segments.Length ? _segments[~segIdx].Offset :
_realSize
;
240
if (buffer.IsEmpty || _virtualPosition >=
_realSize
)
252
int toRead = (int)Math.Min(buffer.Length,
_realSize
- _virtualPosition);
263
long nextSegStart = ~segIdx < _segments.Length ? _segments[~segIdx].Offset :
_realSize
;