Searched refs:endOnInput (Results 1 – 1 of 1) sorted by relevance
73 int endOnInput, /* endOnOutputSize, endOnInputSize */ in LZ4_decompress_generic() argument96 const int safeDecode = (endOnInput==endOnInputSize); in LZ4_decompress_generic()102 …if ((endOnInput) && (unlikely(outputSize==0))) return ((inputSize==1) && (*ip==0)) ? 0 : -1; /* E… in LZ4_decompress_generic()103 if ((!endOnInput) && (unlikely(outputSize==0))) return (*ip==0?1:-1); in LZ4_decompress_generic()123 while (likely((endOnInput)?ip<iend-RUN_MASK:1) && (s==255)); in LZ4_decompress_generic()130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()131 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()136 …if ((endOnInput) && (ip+length > iend)) goto _output_error; /* Error : read attempt beyond end o… in LZ4_decompress_generic()140 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()162 if ((endOnInput) && (ip > iend-LASTLITERALS)) goto _output_error; in LZ4_decompress_generic()[all …]
Completed in 3 milliseconds