Lines Matching refs:match
109 const BYTE *match; in LZ4_decompress_generic() local
198 match = op - offset; in LZ4_decompress_generic()
200 if ((checkOffset) && (unlikely(match < lowLimit))) { in LZ4_decompress_generic()
233 if ((dict == usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()
239 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()
244 memmove(op, dictEnd - (lowPrefix - match), in LZ4_decompress_generic()
252 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()
280 op[0] = match[0]; in LZ4_decompress_generic()
281 op[1] = match[1]; in LZ4_decompress_generic()
282 op[2] = match[2]; in LZ4_decompress_generic()
283 op[3] = match[3]; in LZ4_decompress_generic()
284 match += dec32table[offset]; in LZ4_decompress_generic()
285 memcpy(op + 4, match, 4); in LZ4_decompress_generic()
286 match -= dec64; in LZ4_decompress_generic()
288 LZ4_copy8(op, match); in LZ4_decompress_generic()
289 match += 8; in LZ4_decompress_generic()
306 LZ4_wildCopy(op, match, oCopyLimit); in LZ4_decompress_generic()
307 match += oCopyLimit - op; in LZ4_decompress_generic()
312 *op++ = *match++; in LZ4_decompress_generic()
314 LZ4_copy8(op, match); in LZ4_decompress_generic()
317 LZ4_wildCopy(op + 8, match + 8, cpy); in LZ4_decompress_generic()