Lines Matching refs:cpy
88 BYTE* cpy; in LZ4_decompress_generic() local
129 cpy = op+length; in LZ4_decompress_generic()
130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
131 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()
135 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic()
140 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
141 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
148 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()
149 ip += length; op = cpy; in LZ4_decompress_generic()
152 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic()
204 cpy = op + length; in LZ4_decompress_generic()
217 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic()
219 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
226 while (op<cpy) *op++ = *match++; in LZ4_decompress_generic()
229 LZ4_wildCopy(op, match, cpy); in LZ4_decompress_generic()
230 op=cpy; /* correction */ in LZ4_decompress_generic()