Searched refs:cyclicBufferSize (Results 1 – 7 of 7) sorted by relevance
/external/lzma/C/ |
D | LzFind.c | 230 p->cyclicBufferSize = newCyclicBufferSize; in MatchFinder_Create() 251 UInt32 limit2 = p->cyclicBufferSize - p->cyclicBufferPos; in MatchFinder_SetLimits() 280 p->pos = p->streamPos = p->cyclicBufferSize; in MatchFinder_Init() 319 if (p->cyclicBufferPos == p->cyclicBufferSize) in MatchFinder_CheckLimits() 477 #define MF_PARAMS(p) p->pos, p->buffer, p->son, p->cyclicBufferPos, p->cyclicBufferSize, p->cutValue 524 if (delta2 < p->cyclicBufferSize && *(cur - delta2) == *cur) in Bt3_MatchFinder_GetMatches() 558 if (delta2 < p->cyclicBufferSize && *(cur - delta2) == *cur) in Bt4_MatchFinder_GetMatches() 564 if (delta2 != delta3 && delta3 < p->cyclicBufferSize && *(cur - delta3) == *cur) in Bt4_MatchFinder_GetMatches() 605 if (delta2 < p->cyclicBufferSize && *(cur - delta2) == *cur) in Hc4_MatchFinder_GetMatches() 611 if (delta2 != delta3 && delta3 < p->cyclicBufferSize && *(cur - delta3) == *cur) in Hc4_MatchFinder_GetMatches()
|
D | LzFindMt.c | 342 size2 = p->cyclicBufferSize - cyclicBufferPos; in BtGetMatches() 351 pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue, in BtGetMatches() 362 …etMatchesSpecN(lenLimit, pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue, in BtGetMatches() 374 if (cyclicBufferPos == p->cyclicBufferSize) in BtGetMatches() 395 UInt32 subValue = p->pos - p->cyclicBufferSize; in BtFillBlock() 396 MatchFinder_Normalize3(subValue, p->son, p->cyclicBufferSize * 2); in BtFillBlock() 511 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/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/ |
D | BinTree.java | 70 int cyclicBufferSize = historySize + 1; in Create() local 71 …if (_cyclicBufferSize != cyclicBufferSize) _son = new int[(_cyclicBufferSize = cyclicBufferSize) *… in Create()
|
/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()
|