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()
275 if (!partialDecoding || (cpy == oend)) in LZ4_decompress_generic()
304 assert(oend > op); in LZ4_decompress_generic()
305 assert(oend - op >= 4); in LZ4_decompress_generic()
334 if (unlikely(op + length > oend - LASTLITERALS)) { in LZ4_decompress_generic()
338 length = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
381 assert(op <= oend); in LZ4_decompress_generic()
383 (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
384 size_t const mlen = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
396 if (op == oend) in LZ4_decompress_generic()
416 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
417 BYTE * const oCopyLimit = oend - (WILDCOPYLENGTH - 1); in LZ4_decompress_generic()
419 if (cpy > oend - LASTLITERALS) { in LZ4_decompress_generic()