Lines Matching defs:_streamPos
12 bool _streamEndWasReached; // if (true) then _streamPos shows real end of stream
22 public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream
31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset;
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos);
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size);
51 _posLimit = _streamPos;
59 _streamPos += (UInt32)numReadBytes;
60 if (_streamPos >= _pos + _keepSizeAfter)
61 _posLimit = _streamPos - _keepSizeAfter;
88 _streamPos = 0;
111 if ((_pos + index) + limit > _streamPos)
112 limit = _streamPos - (UInt32)(_pos + index);
122 public UInt32 GetNumAvailableBytes() { return _streamPos - _pos; }
129 _streamPos -= (UInt32)subValue;