Lines Matching refs:oend
87 BYTE * const oend = op + outputSize; in LZ4_decompress_generic() local
100 const BYTE *const shortoend = oend - in LZ4_decompress_generic()
224 if (((endOnInput) && ((cpy > oend - MFLIMIT) in LZ4_decompress_generic()
226 || ((!endOnInput) && (cpy > oend - WILDCOPYLENGTH))) { in LZ4_decompress_generic()
228 if (cpy > oend) { in LZ4_decompress_generic()
233 cpy = oend; in LZ4_decompress_generic()
234 length = oend - op; in LZ4_decompress_generic()
247 && (cpy != oend)) { in LZ4_decompress_generic()
257 || (cpy > oend))) { in LZ4_decompress_generic()
279 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic()
308 assert(oend > op); in LZ4_decompress_generic()
309 assert(oend - op >= 4); in LZ4_decompress_generic()
338 if (unlikely(op + length > oend - LASTLITERALS)) { in LZ4_decompress_generic()
342 length = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
385 assert(op <= oend); in LZ4_decompress_generic()
387 (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
388 size_t const mlen = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
400 if (op == oend) in LZ4_decompress_generic()
420 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
421 BYTE * const oCopyLimit = oend - (WILDCOPYLENGTH - 1); in LZ4_decompress_generic()
423 if (cpy > oend - LASTLITERALS) { in LZ4_decompress_generic()