Home | History | Annotate | Download | only in lib

Lines Matching refs:oend

962     BYTE* const oend = op + outputSize;
976 if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* targetOutputSize too high => decode everything */
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 */
1048 if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing restriction */
1093 if (unlikely(cpy>oend-12))
1095 if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be literals */
1096 if (op < oend-8)
1098 LZ4_wildCopy(op, match, oend-8);
1099 match += (oend-8) - op;
1100 op = oend-8;