Lines Matching refs:oend

2241         BYTE *const oend = op + outputSize;  in LZ4_decompress_generic()  local
2251 const BYTE *const shortoend = oend - (endOnInput ? 14 : 8) /*maxLL*/ - 18 /*maxML*/; in LZ4_decompress_generic()
2280 if ((oend - op) < FASTLOOP_SAFE_DISTANCE) in LZ4_decompress_generic()
2290 assert(oend - op >= FASTLOOP_SAFE_DISTANCE); in LZ4_decompress_generic()
2323 if ((cpy > oend - 32) || (ip + length > iend - 32)) in LZ4_decompress_generic()
2331 if (cpy > oend - 8) in LZ4_decompress_generic()
2395 if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) in LZ4_decompress_generic()
2403 if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) in LZ4_decompress_generic()
2415 assert(op + 18 <= oend); in LZ4_decompress_generic()
2433 if (unlikely(op + length > oend - LASTLITERALS)) in LZ4_decompress_generic()
2438 length = MIN(length, (size_t)(oend - op)); in LZ4_decompress_generic()
2480 assert((op <= oend) && (oend - op >= 32)); in LZ4_decompress_generic()
2571 … (((endOnInput) && ((cpy > oend - MFLIMIT) || (ip + length > iend - (2 + 1 + LASTLITERALS)))) || (… in LZ4_decompress_generic()
2586 … DEBUGLOG(7, "partialDecoding: remaining space in dstBuffer : %i", (int)(oend - op)); in LZ4_decompress_generic()
2599 if (cpy > oend) in LZ4_decompress_generic()
2601 cpy = oend; in LZ4_decompress_generic()
2602 assert(op <= oend); in LZ4_decompress_generic()
2603 length = (size_t)(oend - op); in LZ4_decompress_generic()
2611 if ((!endOnInput) && (cpy != oend)) in LZ4_decompress_generic()
2618 if ((endOnInput) && ((ip + length != iend) || (cpy > oend))) in LZ4_decompress_generic()
2622 DEBUGLOG(6, "or cpy(%p) > oend(%p)", cpy, oend); in LZ4_decompress_generic()
2634 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic()
2674 if (unlikely(op + length > oend - LASTLITERALS)) in LZ4_decompress_generic()
2677 length = MIN(length, (size_t)(oend - op)); in LZ4_decompress_generic()
2716 assert(op <= oend); in LZ4_decompress_generic()
2717 if (partialDecoding && (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) in LZ4_decompress_generic()
2719 size_t const mlen = MIN(length, (size_t)(oend - op)); in LZ4_decompress_generic()
2734 if (op == oend) in LZ4_decompress_generic()
2759 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) in LZ4_decompress_generic()
2761 BYTE *const oCopyLimit = oend - (WILDCOPYLENGTH - 1); in LZ4_decompress_generic()
2762 if (cpy > oend - LASTLITERALS) in LZ4_decompress_generic()