Lines Matching refs:oend
88 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local
102 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… 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()
174 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… 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()
221 if (op < oend-8) in LZ4_decompress_generic()
223 LZ4_wildCopy(op, match, oend-8); in LZ4_decompress_generic()
224 match += (oend-8) - op; in LZ4_decompress_generic()
225 op = oend-8; in LZ4_decompress_generic()