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