Searched defs:_cyclicBufferSize (Results 1 - 4 of 4) sorted by relevance
/external/lzma/CS/7zip/Compress/LZ/ |
H A D | LzBinTree.cs | 10 UInt32 _cyclicBufferSize = 0;
field in class:SevenZip.Compression.LZ.BinTree 65 if (++_cyclicBufferPos >= _cyclicBufferSize)
94 if (_cyclicBufferSize != cyclicBufferSize)
95 _son = new UInt32[(_cyclicBufferSize = cyclicBufferSize) * 2];
134 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1;
269 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
308 (_cyclicBufferPos - delta + _cyclicBufferSize)) << [all...] |
/external/lzma/Java/SevenZip/Compression/LZ/ |
H A D | BinTree.java | 10 int _cyclicBufferSize = 0;
field in class:BinTree 65 if (++_cyclicBufferPos >= _cyclicBufferSize)
94 if (_cyclicBufferSize != cyclicBufferSize)
95 _son = new int[(_cyclicBufferSize = cyclicBufferSize) * 2];
134 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1;
269 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
308 (_cyclicBufferPos - delta + _cyclicBufferSize)) << [all...] |
/external/lzma/C/ |
H A D | LzFind.c | 325 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue,
332 if (cutValue-- == 0 || delta >= _cyclicBufferSize)
336 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)];
356 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue,
365 if (cutValue-- == 0 || delta >= _cyclicBufferSize)
371 CLzRef *pair = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1);
411 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue)
419 if (cutValue-- == 0 || delta >= _cyclicBufferSize)
425 CLzRef *pair = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1);
324 Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument 355 GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument 410 SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) argument
|
H A D | LzFindMt.c | 237 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
253 if (cutValue-- == 0 || delta >= _cyclicBufferSize)
259 CLzRef *pair = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1);
236 GetMatchesSpecN(UInt32 lenLimit, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue, UInt32 *_distances, UInt32 _maxLen, const UInt32 *hash, Int32 limit, UInt32 size, UInt32 *posRes) argument
|
Completed in 748 milliseconds