Home
last modified time | relevance | path

Searched refs:cyclicBufferSize (Results 1 – 6 of 6) sorted by relevance

/third_party/lzma/C/
DLzFindMt.c655 size2 = p->cyclicBufferSize - cyclicBufferPos; in BtGetMatches()
662 const UInt32 subValue = (pos - p->cyclicBufferSize); // & ~(UInt32)(kNormalizeAlign - 1); in BtGetMatches()
665 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2); in BtGetMatches()
673 pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue, in BtGetMatches()
691 cyclicBufferPos, p->cyclicBufferSize, in BtGetMatches()
722 if (cyclicBufferPos == p->cyclicBufferSize) in BtGetMatches()
927 p->cyclicBufferSize = mf->cyclicBufferSize; in MatchFinderMt_Init()
DLzFind.c459 p->cyclicBufferSize = newCyclicBufferSize; // it must be = (historySize + 1) in MatchFinder_Create()
501 k = p->cyclicBufferSize - p->cyclicBufferPos; in MatchFinder_SetLimits()
855 size_t numSonRefs = p->cyclicBufferSize; in MatchFinder_CheckLimits()
862 if (p->cyclicBufferPos == p->cyclicBufferSize) in MatchFinder_CheckLimits()
1113 …lenLimit, curMatch, p->pos, p->buffer, p->son, p->cyclicBufferPos, p->cyclicBufferSize, p->cutValue
1156 mmm = p->cyclicBufferSize; \
DLzFindMt.h82 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ member
DLzFind.h22 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ member
/third_party/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java93 int cyclicBufferSize = historySize + 1; in Create() local
94 if (_cyclicBufferSize != cyclicBufferSize) in Create()
95 _son = new int[(_cyclicBufferSize = cyclicBufferSize) * 2]; in Create()
/third_party/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs93 UInt32 cyclicBufferSize = historySize + 1; in Create()
94 if (_cyclicBufferSize != cyclicBufferSize) in Create()
95 _son = new UInt32[(_cyclicBufferSize = cyclicBufferSize) * 2]; in Create()