Searched refs:cyclicBufferSize (Results 1 – 6 of 6) sorted by relevance
/external/lzma/C/ |
D | LzFind.c | 245 p->cyclicBufferSize = newCyclicBufferSize; in MatchFinder_Create() 274 UInt32 limit2 = p->cyclicBufferSize - p->cyclicBufferPos; in MatchFinder_SetLimits() 326 p->streamPos = p->cyclicBufferSize; in MatchFinder_Init_3() 379 if (p->cyclicBufferPos == p->cyclicBufferSize) in MatchFinder_CheckLimits() 589 #define MF_PARAMS(p) p->pos, p->buffer, p->son, p->cyclicBufferPos, p->cyclicBufferSize, p->cutValue 649 if (d2 < p->cyclicBufferSize && *(cur - d2) == *cur) in Bt3_MatchFinder_GetMatches() 689 if (d2 < p->cyclicBufferSize && *(cur - d2) == *cur) in Bt4_MatchFinder_GetMatches() 697 if (d2 != d3 && d3 < p->cyclicBufferSize && *(cur - d3) == *cur) in Bt4_MatchFinder_GetMatches() 822 if (d2 < p->cyclicBufferSize && *(cur - d2) == *cur) in Hc4_MatchFinder_GetMatches() 830 if (d2 != d3 && d3 < p->cyclicBufferSize && *(cur - d3) == *cur) in Hc4_MatchFinder_GetMatches()
|
D | LzFindMt.c | 382 size2 = p->cyclicBufferSize - cyclicBufferPos; in BtGetMatches() 392 pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue, in BtGetMatches() 403 …etMatchesSpecN(lenLimit, pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue, in BtGetMatches() 417 if (cyclicBufferPos == p->cyclicBufferSize) in BtGetMatches() 439 UInt32 subValue = p->pos - p->cyclicBufferSize; in BtFillBlock() 440 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2); in BtFillBlock() 564 p->cyclicBufferSize = mf->cyclicBufferSize; in MatchFinderMt_Init()
|
D | LzFindMt.h | 80 UInt32 cyclicBufferSize; /* it must be historySize + 1 */ member
|
D | LzFind.h | 22 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ member
|
/external/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()
|
/external/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()
|