Lines Matching refs:cpy
89 BYTE* cpy; in LZ4_decompress_generic() local
130 cpy = op+length; in LZ4_decompress_generic()
131 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
132 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()
136 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic()
141 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
142 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
149 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()
150 ip += length; op = cpy; in LZ4_decompress_generic()
153 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic()
205 cpy = op + length; in LZ4_decompress_generic()
218 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic()
220 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
227 while (op<cpy) *op++ = *match++; in LZ4_decompress_generic()
230 LZ4_wildCopy(op, match, cpy); in LZ4_decompress_generic()
231 op=cpy; /* correction */ in LZ4_decompress_generic()