Searched refs:matchlimit (Results 1 – 3 of 3) sorted by relevance
/external/lz4/lib/ |
D | lz4opt.h | 226 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_optimal() local 239 … match_num = LZ4HC_BinTree_GetAllMatches(ctx, ip, matchlimit, MINMATCH-1, matches, fullUpdate); in LZ4HC_compress_optimal() 288 … match_num = LZ4HC_BinTree_GetAllMatches(ctx, inr, matchlimit, MINMATCH-1, matches, fullUpdate); in LZ4HC_compress_optimal()
|
D | lz4.c | 481 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic() local 581 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic() 585 unsigned const more = LZ4_count(ip, (const BYTE*)source, matchlimit); in LZ4_compress_generic() 590 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic() 735 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_destSize_generic() local 812 { size_t matchLength = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_destSize_generic()
|
D | lz4hc.c | 324 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain() local 345 ml = LZ4HC_InsertAndFindBestMatch (ctx, ip, matchlimit, (&ref), maxNbAttempts); in LZ4HC_compress_hashChain() 355 …ml2 = LZ4HC_InsertAndGetWiderMatch(ctx, ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, maxNb… in LZ4HC_compress_hashChain() 400 …ml3 = LZ4HC_InsertAndGetWiderMatch(ctx, start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3,… in LZ4HC_compress_hashChain()
|