Lines Matching refs:oend
962 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local
976 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic()
1005 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
1006 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()
1010 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic()
1015 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
1016 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
1048 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… in LZ4_decompress_generic()
1093 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic()
1095 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
1096 if (op < oend-8) in LZ4_decompress_generic()
1098 LZ4_wildCopy(op, match, oend-8); in LZ4_decompress_generic()
1099 match += (oend-8) - op; in LZ4_decompress_generic()
1100 op = oend-8; in LZ4_decompress_generic()