Searched refs:endOnInput (Results 1 – 1 of 1) sorted by relevance
1744 endCondition_directive endOnInput, /* endOnOutputSize, endOnInputSize */ in LZ4_decompress_generic() argument1763 const int safeDecode = (endOnInput==endOnInputSize); in LZ4_decompress_generic()1768 const BYTE* const shortiend = iend - (endOnInput ? 14 : 8) /*maxLL*/ - 2 /*offset*/; in LZ4_decompress_generic()1769 const BYTE* const shortoend = oend - (endOnInput ? 14 : 8) /*maxLL*/ - 18 /*maxML*/; in LZ4_decompress_generic()1781 if ((endOnInput) && (unlikely(outputSize==0))) { in LZ4_decompress_generic()1786 if ((!endOnInput) && (unlikely(outputSize==0))) { return (*ip==0 ? 1 : -1); } in LZ4_decompress_generic()1787 if ((endOnInput) && unlikely(srcSize==0)) { return -1; } in LZ4_decompress_generic()1800 if (endOnInput) { assert(ip < iend); } in LZ4_decompress_generic()1804 assert(!endOnInput || ip <= iend); /* ip < iend before the increment */ in LZ4_decompress_generic()1809 … length += read_variable_length(&ip, iend-RUN_MASK, (int)endOnInput, (int)endOnInput, &error); in LZ4_decompress_generic()[all …]