Searched refs:newMatch (Results 1 - 1 of 1) sorted by relevance
/third_party/lz4/lib/ |
H A D | lz4hc.c | 1431 LZ4HC_match_t newMatch; in LZ4HC_compress_optimal() local 1449 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSpeed); in LZ4HC_compress_optimal() 1452 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, favorDecSpeed); in LZ4HC_compress_optimal() 1453 if (!newMatch.len) continue; in LZ4HC_compress_optimal() 1455 if ( ((size_t)newMatch.len > sufficient_len) in LZ4HC_compress_optimal() 1456 || (newMatch.len + cur >= LZ4_OPT_NUM) ) { in LZ4HC_compress_optimal() 1458 best_mlen = newMatch.len; in LZ4HC_compress_optimal() 1459 best_off = newMatch.off; in LZ4HC_compress_optimal() 1480 { int const matchML = newMatch.len; in LZ4HC_compress_optimal() 1483 assert(cur + newMatch in LZ4HC_compress_optimal() [all...] |
Completed in 4 milliseconds