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

  /external/lz4/lib/
lz4.c 266 #define LASTLITERALS 5
481 const BYTE* const matchlimit = iend - LASTLITERALS;
555 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)))
595 (unlikely(op + (1 + LASTLITERALS) + (matchCode>>8) > olimit)) )
735 const BYTE* const matchlimit = iend - LASTLITERALS;
740 BYTE* const oMaxMatch = op + targetDstSize - (LASTLITERALS + 1 /* token */);
    [all...]
lz4hc.c 277 if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* Check output limit */
290 if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check output limit */
324 const BYTE* const matchlimit = (iend - LASTLITERALS);
578 LZ4HC_updateBinTree(ctxPtr, ctxPtr->end - MFLIMIT, ctxPtr->end - LASTLITERALS);
590 LZ4HC_updateBinTree(ctxPtr, ctxPtr->end - MFLIMIT, ctxPtr->end - LASTLITERALS);
lz4opt.h 226 const BYTE* const matchlimit = (iend - LASTLITERALS);

Completed in 101 milliseconds