Home
last modified time | relevance | path

Searched refs:_cyclicBufferSize (Results 1 - 6 of 6) sorted by relevance

/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java10 int _cyclicBufferSize = 0; field in BinTree
65 if (++_cyclicBufferPos >= _cyclicBufferSize) in MovePos()
94 if (_cyclicBufferSize != cyclicBufferSize) in Create()
95 _son = new int[(_cyclicBufferSize = cyclicBufferSize) * 2]; in Create()
134 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches()
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1; in GetMatches()
269 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip()
308 (_cyclicBufferPos - delta + _cyclicBufferSize)) << in Skip()
[all...]
/third_party/lzma/CS/7zip/Compress/LZ/
H A DLzBinTree.cs10 UInt32 _cyclicBufferSize = 0; field in SevenZip.Compression.LZ.BinTree
65 if (++_cyclicBufferPos >= _cyclicBufferSize) in MovePos()
94 if (_cyclicBufferSize != cyclicBufferSize) in Create()
95 _son = new UInt32[(_cyclicBufferSize = cyclicBufferSize) * 2]; in Create()
134 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches()
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1; in GetMatches()
269 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip()
308 (_cyclicBufferPos - delta + _cyclicBufferSize)) << in Skip()
[all...]
/third_party/lzma/C/
H A DLzFindOpt.c203 GetMatchesSpecN_1() : (pos < _cyclicBufferSize)
204 GetMatchesSpecN_2() : (pos >= _cyclicBufferSize)
210 // #define cbs _cyclicBufferSize
219 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,
225 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, in GetMatchesSpecN_2()
247 cbs = _cyclicBufferSize; in GetMatchesSpecN_2()
409 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,
429 cbs = _cyclicBufferSize;
558 // delta >= _cyclicBufferSize || delta >= pos
223 GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 *posRes) GetMatchesSpecN_2() argument
H A DLzFind.c874 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in Hc_GetMatchesSpec()
882 if (cutValue-- == 0 || delta >= _cyclicBufferSize) in Hc_GetMatchesSpec()
886 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec()
917 if (delta >= _cyclicBufferSize) in Hc_GetMatchesSpec()
921 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec()
956 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in GetMatchesSpec1()
967 cmCheck = (UInt32)(pos - _cyclicBufferSize); in GetMatchesSpec1()
968 if ((UInt32)pos <= _cyclicBufferSize) in GetMatchesSpec1()
976 CLzRef *pair = son + ((size_t)(_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1); in GetMatchesSpec1()
1026 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt3 in SkipMatchesSpec()
873 Hc_GetMatchesSpec(size_t lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *d, unsigned maxLen) Hc_GetMatchesSpec() argument
955 GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *d, UInt32 maxLen) GetMatchesSpec1() argument
1025 SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) SkipMatchesSpec() argument
[all...]
H A DLzFind.h118 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
H A DLzFindMt.c565 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,

Completed in 6 milliseconds