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

  /external/lz4/lib/
lz4opt.h 225 const BYTE* const mflimit = iend - MFLIMIT; local
235 while (ip < mflimit) {
286 if (cur == last_pos || inr >= mflimit) break;
lz4hc.c 323 const BYTE* const mflimit = iend - MFLIMIT; local
344 while (ip < mflimit) {
354 if (ip+ml < mflimit)
399 if (start2 + ml2 < mflimit)
578 LZ4HC_updateBinTree(ctxPtr, ctxPtr->end - MFLIMIT, ctxPtr->end - LASTLITERALS);
590 LZ4HC_updateBinTree(ctxPtr, ctxPtr->end - MFLIMIT, ctxPtr->end - LASTLITERALS);
lz4.c 267 #define MFLIMIT (WILDCOPYLENGTH+MINMATCH)
268 static const int LZ4_minLength = (MFLIMIT+1);
373 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
480 const BYTE* const mflimit = iend - MFLIMIT; local
529 if (unlikely(forwardIp > mflimit)) goto _last_literals;
611 if (ip > mflimit) break;
734 const BYTE* const mflimit = iend - MFLIMIT; local
739 BYTE* const oMaxLit = op + targetDstSize - 2 /* offset */ - 8 /* because 8+MINMATCH==MFLIMIT */ - 1 /* token */
    [all...]

Completed in 61 milliseconds