Lines Matching refs:bytesLeft
60 stream->bytesLeft = 1;
70 stream->bytesLeft = value + 1;
74 size_t const setLength = MIN(stream->bytesLeft, (size_t)(oend - op));
78 stream->bytesLeft -= setLength;
80 if (stream->bytesLeft > 0)
89 stream->bytesLeft = 1;
100 stream->bytesLeft = 0;
105 return stream->bytesLeft;
129 stream->bytesLeft = MIN(kMatchBytes, value);
132 while (stream->bytesLeft > 0 && op < oend) {
134 --stream->bytesLeft;
136 if (stream->bytesLeft > 0)
140 stream->bytesLeft = value - MIN(kMatchBytes, value);
143 while (stream->bytesLeft > 0 && op < oend) {
145 --stream->bytesLeft;
147 if (stream->bytesLeft > 0)
151 stream->bytesLeft = MIN(kMatchBytes, value);
154 while (stream->bytesLeft > 0 && op < oend) {
156 --stream->bytesLeft;
158 if (stream->bytesLeft > 0)
164 stream->bytesLeft = 0;
169 return stream->bytesLeft;
194 stream->bytesLeft = MIN(value, kMatchBytes);
197 while (stream->bytesLeft > 0 && op < oend) {
199 --stream->bytesLeft;
201 if (stream->bytesLeft > 0)
205 stream->bytesLeft = value - MIN(value, kMatchBytes);
210 size_t const setLength = MIN(stream->bytesLeft, (size_t)(oend - op));
214 stream->bytesLeft -= setLength;
216 if (stream->bytesLeft > 0)
220 stream->bytesLeft = MIN(value, kMatchBytes);
224 while (stream->bytesLeft > 0 && op < oend) {
226 --stream->bytesLeft;
228 if (stream->bytesLeft > 0)
234 stream->bytesLeft = 0;
239 return stream->bytesLeft;