Home
last modified time | relevance | path

Searched refs:iend (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.8/kernel/src/libs/
Dlz4.c1173 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()
[all …]