HomeSort by relevance Sort by last modified time
    Searched refs:lenLimit (Results 1 - 14 of 14) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 120 int lenLimit;
122 lenLimit = _matchMaxLen;
125 lenLimit = _streamPos - _pos;
126 if (lenLimit < kMinMatchCheck)
218 while(++len != lenLimit)
225 if (len == lenLimit)
256 int lenLimit;
258 lenLimit = _matchMaxLen;
261 lenLimit = _streamPos - _pos;
262 if (lenLimit < kMinMatchCheck)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzFind.c 287 UInt32 lenLimit = p->streamPos - p->pos;
288 if (lenLimit > p->matchMaxLen)
289 lenLimit = p->matchMaxLen;
290 p->lenLimit = lenLimit;
357 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
373 while (++len != lenLimit)
380 if (len == lenLimit)
388 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
409 if (++len != lenLimit && pb[len] == cur[len])
    [all...]
LzFind.h 19 UInt32 lenLimit;
79 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
LzFindMt.c 236 static Int32 NO_INLINE GetMatchesSpecN(UInt32 lenLimit, UInt32 pos, const Byte *cur, CLzRef *son,
264 if (++len != lenLimit && pb[len] == cur[len])
265 while (++len != lenLimit)
272 if (len == lenLimit)
337 UInt32 lenLimit = p->matchMaxLen;
340 if (lenLimit >= p->hashNumAvail)
341 lenLimit = p->hashNumAvail;
343 UInt32 size2 = p->hashNumAvail - lenLimit + 1;
355 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++],
367 curPos = limit - GetMatchesSpecN(lenLimit, pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue,
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.c 289 UInt32 lenLimit = p->streamPos - p->pos;
290 if (lenLimit > p->matchMaxLen)
291 lenLimit = p->matchMaxLen;
292 p->lenLimit = lenLimit;
359 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
375 while (++len != lenLimit)
382 if (len == lenLimit)
390 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
411 if (++len != lenLimit && pb[len] == cur[len])
    [all...]
LzFind.h 19 UInt32 lenLimit;
79 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.c 289 UInt32 lenLimit = p->streamPos - p->pos;
290 if (lenLimit > p->matchMaxLen)
291 lenLimit = p->matchMaxLen;
292 p->lenLimit = lenLimit;
359 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
375 while (++len != lenLimit)
382 if (len == lenLimit)
390 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
411 if (++len != lenLimit && pb[len] == cur[len])
    [all...]
LzFind.h 19 UInt32 lenLimit;
79 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
  /external/lzma/C/
LzFind.c 287 UInt32 lenLimit = p->streamPos - p->pos;
288 if (lenLimit > p->matchMaxLen)
289 lenLimit = p->matchMaxLen;
290 p->lenLimit = lenLimit;
357 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
373 while (++len != lenLimit)
380 if (len == lenLimit)
388 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
409 if (++len != lenLimit && pb[len] == cur[len])
    [all...]
LzFind.h 19 UInt32 lenLimit;
79 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
LzFindMt.c 236 static Int32 NO_INLINE GetMatchesSpecN(UInt32 lenLimit, UInt32 pos, const Byte *cur, CLzRef *son,
264 if (++len != lenLimit && pb[len] == cur[len])
265 while (++len != lenLimit)
272 if (len == lenLimit)
337 UInt32 lenLimit = p->matchMaxLen;
340 if (lenLimit >= p->hashNumAvail)
341 lenLimit = p->hashNumAvail;
343 UInt32 size2 = p->hashNumAvail - lenLimit + 1;
355 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++],
367 curPos = limit - GetMatchesSpecN(lenLimit, pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBufferSize, p->cutValue,
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 120 UInt32 lenLimit;
122 lenLimit = _matchMaxLen;
125 lenLimit = _streamPos - _pos;
126 if (lenLimit < kMinMatchCheck)
218 while(++len != lenLimit)
225 if (len == lenLimit)
256 UInt32 lenLimit;
258 lenLimit = _matchMaxLen;
261 lenLimit = _streamPos - _pos;
262 if (lenLimit < kMinMatchCheck)
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
LZEncoder.java 323 * @param lenLimit don't test for a match longer than this
325 * @return length of the match; it is in the range [0, lenLimit]
327 public int getMatchLen(int dist, int lenLimit) {
331 while (len < lenLimit && buf[readPos + len] == buf[backPos + len])
342 * @param lenLimit don't test for a match longer than this
344 * @return length of the match; it is in the range [0, lenLimit]
346 public int getMatchLen(int forward, int dist, int lenLimit) {
351 while (len < lenLimit && buf[curPos + len] == buf[backPos + len])
368 int lenLimit = Math.min(getAvail(), matchLenMax);
371 if (getMatchLen(matches.dist[i], lenLimit) != matches.len[i]
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderNormal.java 403 int lenLimit = Math.min(niceLen, avail - 1);
404 int len = lz.getMatchLen(1, opts[optCur].reps[0], lenLimit);
430 int lenLimit = Math.min(avail, niceLen);
433 int len = lz.getMatchLen(opts[optCur].reps[rep], lenLimit);

Completed in 681 milliseconds