Lines Matching refs:match
112 const BYTE* match; in LZ4_decompress_generic() local
153 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic()
154 …if ((checkOffset) && (unlikely(match < lowLimit))) goto _output_error; /* Error : offset outside… in LZ4_decompress_generic()
172 if ((dict==usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()
176 if (length <= (size_t)(lowPrefix-match)) in LZ4_decompress_generic()
179 match = dictEnd - (lowPrefix-match); in LZ4_decompress_generic()
180 memmove(op, match, length); op += length; in LZ4_decompress_generic()
185 size_t copySize = (size_t)(lowPrefix-match); in LZ4_decompress_generic()
206 if (unlikely((op-match)<8)) in LZ4_decompress_generic()
208 const size_t dec64 = dec64table[op-match]; in LZ4_decompress_generic()
209 op[0] = match[0]; in LZ4_decompress_generic()
210 op[1] = match[1]; in LZ4_decompress_generic()
211 op[2] = match[2]; in LZ4_decompress_generic()
212 op[3] = match[3]; in LZ4_decompress_generic()
213 match += dec32table[op-match]; in LZ4_decompress_generic()
214 LZ4_copy4(op+4, match); in LZ4_decompress_generic()
215 op += 8; match -= dec64; in LZ4_decompress_generic()
216 } else { LZ4_copy8(op, match); op+=8; match+=8; } in LZ4_decompress_generic()
223 LZ4_wildCopy(op, match, oend-8); in LZ4_decompress_generic()
224 match += (oend-8) - op; in LZ4_decompress_generic()
227 while (op<cpy) *op++ = *match++; in LZ4_decompress_generic()
230 LZ4_wildCopy(op, match, cpy); in LZ4_decompress_generic()