Home | History | Annotate | Download | only in lib

Lines Matching refs:cpy

963     BYTE* cpy;
1004 cpy = op+length;
1005 if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITERALS))) )
1006 || ((!endOnInput) && (cpy>oend-COPYLENGTH)))
1010 if (cpy > oend) goto _output_error; /* Error : write attempt beyond end of output buffer */
1015 if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop exactly there */
1016 if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input must be consumed */
1023 LZ4_wildCopy(op, ip, cpy);
1024 ip += length; op = cpy;
1027 match = cpy - LZ4_readLE16(ip); ip+=2;
1080 cpy = op + length;
1093 if (unlikely(cpy>oend-12))
1095 if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be literals */
1102 while (op<cpy) *op++ = *match++;
1105 LZ4_wildCopy(op, match, cpy);
1106 op=cpy; /* correction */