Lines Matching refs:length
122 size_t length; in LZ4_decompress_generic() local
128 length = token>>ML_BITS; in LZ4_decompress_generic()
145 if ((endOnInput ? length != RUN_MASK : length <= 8) in LZ4_decompress_generic()
154 op += length; ip += length; in LZ4_decompress_generic()
161 length = token & ML_MASK; /* match length */ in LZ4_decompress_generic()
168 if ((length != ML_MASK) && in LZ4_decompress_generic()
175 op += length + MINMATCH; in LZ4_decompress_generic()
189 if (length == RUN_MASK) { in LZ4_decompress_generic()
198 length += s; in LZ4_decompress_generic()
205 length < (uptrval)(op))) { in LZ4_decompress_generic()
211 length < (uptrval)(ip))) { in LZ4_decompress_generic()
218 cpy = op + length; in LZ4_decompress_generic()
222 || (ip + length > iend - (2 + 1 + LASTLITERALS)))) in LZ4_decompress_generic()
231 length = oend - op; in LZ4_decompress_generic()
234 && (ip + length > iend)) { in LZ4_decompress_generic()
253 && ((ip + length != iend) in LZ4_decompress_generic()
263 memcpy(op, ip, length); in LZ4_decompress_generic()
264 ip += length; in LZ4_decompress_generic()
265 op += length; in LZ4_decompress_generic()
273 ip += length; in LZ4_decompress_generic()
283 length = token & ML_MASK; in LZ4_decompress_generic()
303 if (length == ML_MASK) { in LZ4_decompress_generic()
312 length += s; in LZ4_decompress_generic()
317 (uptrval)(op) + length < (uptrval)op)) { in LZ4_decompress_generic()
323 length += MINMATCH; in LZ4_decompress_generic()
327 if (unlikely(op + length > oend - LASTLITERALS)) { in LZ4_decompress_generic()
331 length = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
334 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()
340 length); in LZ4_decompress_generic()
341 op += length; in LZ4_decompress_generic()
348 size_t const restSize = length - copySize; in LZ4_decompress_generic()
368 cpy = op + length; in LZ4_decompress_generic()
377 size_t const mlen = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
429 if (length > 16) in LZ4_decompress_generic()