Searched refs:cyclicBufferSize (Results 1 – 6 of 6) sorted by relevance
/third_party/lzma/C/ |
D | LzFindMt.c | 655 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()
|
D | LzFind.c | 459 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; \
|
D | LzFindMt.h | 82 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ member
|
D | LzFind.h | 22 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ member
|
/third_party/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 93 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/ |
D | LzBinTree.cs | 93 UInt32 cyclicBufferSize = historySize + 1; in Create() 94 if (_cyclicBufferSize != cyclicBufferSize) in Create() 95 _son = new UInt32[(_cyclicBufferSize = cyclicBufferSize) * 2]; in Create()
|