Searched refs:_cyclicBufferSize (Results 1 – 2 of 2) sorted by relevance
/titanic_50/usr/src/common/lzma/ |
H A D | LzFind.c | 318 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in Hc_GetMatchesSpec() argument 325 if (cutValue-- == 0 || delta >= _cyclicBufferSize) in Hc_GetMatchesSpec() 329 … curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec() 349 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in GetMatchesSpec1() argument 358 if (cutValue-- == 0 || delta >= _cyclicBufferSize) in GetMatchesSpec1() 364 …r = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1); in GetMatchesSpec1() 404 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) in SkipMatchesSpec() argument 412 if (cutValue-- == 0 || delta >= _cyclicBufferSize) in SkipMatchesSpec() 418 …r = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1); in SkipMatchesSpec()
|
H A D | LzFind.h | 73 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
|