Searched refs:_cyclicBufferPos (Results 1 - 6 of 6) sorted by relevance
/third_party/lzma/C/ |
H A D | LzFindOpt.c | 219 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,
225 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,
in GetMatchesSpecN_2() 258 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << 1);
in GetMatchesSpecN_2() 267 CLzRef *ptr0 = son + ((size_t)_cyclicBufferPos << 1) + 1;
in GetMatchesSpecN_2() 268 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << 1);
in GetMatchesSpecN_2() 280 CLzRef *pair = son + ((size_t)((ptrdiff_t)_cyclicBufferPos - (ptrdiff_t)delta
in GetMatchesSpecN_2() 281 + (ptrdiff_t)(UInt32)(_cyclicBufferPos < delta ? cbs : 0)
in GetMatchesSpecN_2() 333 _cyclicBufferPos++;
in GetMatchesSpecN_2() 336 CLzRef *dest = son + ((size_t)(_cyclicBufferPos) << 1);
in GetMatchesSpecN_2() 338 + (ptrdiff_t)(UInt32)((_cyclicBufferPos < delt in GetMatchesSpecN_2() 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 [all...] |
H A D | LzFind.c | 874 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue,
in Hc_GetMatchesSpec() 878 son[_cyclicBufferPos] = curMatch;
in Hc_GetMatchesSpec() 886 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)];
in Hc_GetMatchesSpec() 907 son[_cyclicBufferPos] = curMatch;
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() 959 CLzRef *ptr0 = son + ((size_t)_cyclicBufferPos << 1) + 1;
in GetMatchesSpec1() 960 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << in GetMatchesSpec1() 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 D | LzFind.h | 118 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
|
H A D | LzFindMt.c | 565 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize,
|
/third_party/lzma/Java/SevenZip/Compression/LZ/ |
H A D | BinTree.java | 9 int _cyclicBufferPos;
field in BinTree 59 _cyclicBufferPos = 0;
in Init() 65 if (++_cyclicBufferPos >= _cyclicBufferSize)
in MovePos() 66 _cyclicBufferPos = 0;
in MovePos() 181 int ptr0 = (_cyclicBufferPos << 1) + 1;
in GetMatches() 182 int ptr1 = (_cyclicBufferPos << 1);
in GetMatches() 210 int cyclicPos = ((delta <= _cyclicBufferPos) ?
in GetMatches() 211 (_cyclicBufferPos - delta) :
in GetMatches() 212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1;
in GetMatches() 290 int ptr0 = (_cyclicBufferPos << in Skip() [all...] |
/third_party/lzma/CS/7zip/Compress/LZ/ |
H A D | LzBinTree.cs | 9 UInt32 _cyclicBufferPos;
field in SevenZip.Compression.LZ.BinTree 59 _cyclicBufferPos = 0;
in Init() 65 if (++_cyclicBufferPos >= _cyclicBufferSize)
in MovePos() 66 _cyclicBufferPos = 0;
in MovePos() 181 UInt32 ptr0 = (_cyclicBufferPos << 1) + 1;
in GetMatches() 182 UInt32 ptr1 = (_cyclicBufferPos << 1);
in GetMatches() 210 UInt32 cyclicPos = ((delta <= _cyclicBufferPos) ?
in GetMatches() 211 (_cyclicBufferPos - delta) :
in GetMatches() 212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1;
in GetMatches() 290 UInt32 ptr0 = (_cyclicBufferPos << in Skip() [all...] |
Completed in 6 milliseconds