Lines Matching refs:_pos
68 if (_pos == kMaxValForNormalize) in MovePos()
121 if (_pos + _matchMaxLen <= _streamPos) in GetMatches()
125 lenLimit = _streamPos - _pos; in GetMatches()
134 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches()
135 int cur = _bufferOffset + _pos; in GetMatches()
155 _hash[hash2Value] = _pos; in GetMatches()
156 _hash[kHash3Offset + hash3Value] = _pos; in GetMatches()
161 distances[offset++] = _pos - curMatch2 - 1; in GetMatches()
169 distances[offset++] = _pos - curMatch3 - 1; in GetMatches()
179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches()
195 distances[offset++] = _pos - curMatch - 1; in GetMatches()
209 int delta = _pos - curMatch; in GetMatches()
257 if (_pos + _matchMaxLen <= _streamPos) in Skip()
261 lenLimit = _streamPos - _pos; in Skip()
269 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip()
270 int cur = _bufferOffset + _pos; in Skip()
278 _hash[hash2Value] = _pos; in Skip()
281 _hash[kHash3Offset + hash3Value] = _pos; in Skip()
288 _hash[kFixHashSize + hashValue] = _pos; in Skip()
305 int delta = _pos - curMatch; in Skip()
359 int subValue = _pos - _cyclicBufferSize; in Normalize()