Searched refs:endOnInput (Results 1 – 1 of 1) sorted by relevance
1660 endCondition_directive endOnInput, /* endOnOutputSize, endOnInputSize */ in LZ4_decompress_generic() argument1679 const int safeDecode = (endOnInput==endOnInputSize); in LZ4_decompress_generic()1684 const BYTE* const shortiend = iend - (endOnInput ? 14 : 8) /*maxLL*/ - 2 /*offset*/; in LZ4_decompress_generic()1685 const BYTE* const shortoend = oend - (endOnInput ? 14 : 8) /*maxLL*/ - 18 /*maxML*/; in LZ4_decompress_generic()1697 if ((endOnInput) && (unlikely(outputSize==0))) { in LZ4_decompress_generic()1702 if ((!endOnInput) && (unlikely(outputSize==0))) { return (*ip==0 ? 1 : -1); } in LZ4_decompress_generic()1703 if ((endOnInput) && unlikely(srcSize==0)) { return -1; } in LZ4_decompress_generic()1716 if (endOnInput) { assert(ip < iend); } in LZ4_decompress_generic()1720 assert(!endOnInput || ip <= iend); /* ip < iend before the increment */ in LZ4_decompress_generic()1725 length += read_variable_length(&ip, iend-RUN_MASK, endOnInput, endOnInput, &error); in LZ4_decompress_generic()[all …]