2 writes to Count
System (2)
sys\System\IO\compression\DeflaterManaged.cs (1)
76
input.
Count
= count;
sys\System\IO\compression\FastEncoderWindow.cs (1)
49
input.
Count
= bufEnd - bufPos;
10 references to Count
System (10)
sys\System\IO\compression\CopyEncoder.cs (1)
26
count = Math.Min(input.
Count
, output.FreeBytes - PaddingSize - output.BitsInBuffer);
sys\System\IO\compression\DeflaterManaged.cs (4)
66
return input.
Count
== 0 && deflateEncoder.BytesInHistory == 0;
73
Debug.Assert(input.
Count
== 0, "We have something left in previous input!");
153
if (inputFromHistory.
Count
> 0) {
157
if (inputFromHistory.
Count
== 0) {
sys\System\IO\compression\FastEncoder.cs (5)
65
int inputBytesPre = BytesInHistory + input.
Count
;
69
int bytesToCopy = (input.
Count
< inputWindow.FreeWindowSpace) ?
70
input.
Count
: inputWindow.FreeWindowSpace;
88
int inputBytesPost = BytesInHistory + input.
Count
;
119
return input.
Count
> 0 || BytesInHistory > 0;