Lines Matching refs:iend
1173 const BYTE *const iend = ip + inputSize; in LZ4_compress_generic_validated() local
1174 const BYTE *const mflimitPlusOne = iend - MFLIMIT + 1; in LZ4_compress_generic_validated()
1175 const BYTE *const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic_validated()
1577 size_t lastRun = (size_t)(iend - anchor); in LZ4_compress_generic_validated()
2238 const BYTE *const iend = ip + srcSize; in LZ4_decompress_generic() local
2250 const BYTE *const shortiend = iend - (endOnInput ? 14 : 8) /*maxLL*/ - 2 /*offset*/; in LZ4_decompress_generic()
2293 assert(ip < iend); in LZ4_decompress_generic()
2298 assert(!endOnInput || ip <= iend); /* ip < iend before the increment */ in LZ4_decompress_generic()
2304 … length += read_variable_length(&ip, iend - RUN_MASK, (int)endOnInput, (int)endOnInput, &error); in LZ4_decompress_generic()
2323 if ((cpy > oend - 32) || (ip + length > iend - 32)) in LZ4_decompress_generic()
2348 if (ip > iend - (16 + 1 /*max lit + offset + nextToken*/)) in LZ4_decompress_generic()
2385 … length += read_variable_length(&ip, iend - LASTLITERALS + 1, (int)endOnInput, 0, &error); in LZ4_decompress_generic()
2501 assert(!endOnInput || ip <= iend); /* ip < iend before the increment */ in LZ4_decompress_generic()
2550 … length += read_variable_length(&ip, iend - RUN_MASK, (int)endOnInput, (int)endOnInput, &error); in LZ4_decompress_generic()
2571 …if (((endOnInput) && ((cpy > oend - MFLIMIT) || (ip + length > iend - (2 + 1 + LASTLITERALS)))) ||… in LZ4_decompress_generic()
2587 … DEBUGLOG(7, "partialDecoding: remaining space in srcBuffer : %i", (int)(iend - ip)); in LZ4_decompress_generic()
2591 if (ip + length > iend) in LZ4_decompress_generic()
2593 length = (size_t)(iend - ip); in LZ4_decompress_generic()
2618 if ((endOnInput) && ((ip + length != iend) || (cpy > oend))) in LZ4_decompress_generic()
2621 … DEBUGLOG(6, "ip(%p) + length(%i) = %p != iend (%p)", ip, (int)length, ip + length, iend); in LZ4_decompress_generic()
2634 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic()
2658 … length += read_variable_length(&ip, iend - LASTLITERALS + 1, (int)endOnInput, 0, &error); in LZ4_decompress_generic()