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

  /external/lz4/lib/
lz4opt.h 226 const BYTE* const matchlimit = (iend - LASTLITERALS); local
239 match_num = LZ4HC_BinTree_GetAllMatches(ctx, ip, matchlimit, MINMATCH-1, matches, fullUpdate);
288 match_num = LZ4HC_BinTree_GetAllMatches(ctx, inr, matchlimit, MINMATCH-1, matches, fullUpdate);
lz4hc.c 324 const BYTE* const matchlimit = (iend - LASTLITERALS); local
345 ml = LZ4HC_InsertAndFindBestMatch (ctx, ip, matchlimit, (&ref), maxNbAttempts);
355 ml2 = LZ4HC_InsertAndGetWiderMatch(ctx, ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, maxNbAttempts);
400 ml3 = LZ4HC_InsertAndGetWiderMatch(ctx, start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, maxNbAttempts);
lz4.c 481 const BYTE* const matchlimit = iend - LASTLITERALS; local
581 if (limit > matchlimit) limit = matchlimit;
585 unsigned const more = LZ4_count(ip, (const BYTE*)source, matchlimit);
590 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit);
735 const BYTE* const matchlimit = iend - LASTLITERALS; local
812 { size_t matchLength = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit);
    [all...]

Completed in 1112 milliseconds