Searched refs:matchCode (Results 1 – 1 of 1) sorted by relevance
865 { unsigned matchCode; in LZ4_compress_generic() local872 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, limit); in LZ4_compress_generic()873 ip += MINMATCH + matchCode; in LZ4_compress_generic()876 matchCode += more; in LZ4_compress_generic()879 … DEBUGLOG(6, " with matchLength=%u starting in extDict", matchCode+MINMATCH); in LZ4_compress_generic()881 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()882 ip += MINMATCH + matchCode; in LZ4_compress_generic()883 DEBUGLOG(6, " with matchLength=%u", matchCode+MINMATCH); in LZ4_compress_generic()887 (unlikely(op + (1 + LASTLITERALS) + (matchCode>>8) > olimit)) ) { in LZ4_compress_generic()893 ip -= matchCode - newMatchCode; in LZ4_compress_generic()[all …]