Lines Matching refs:length
121 size_t length; in LZ4_decompress_generic() local
127 length = token>>ML_BITS; in LZ4_decompress_generic()
147 if ((endOnInput ? length != RUN_MASK : length <= 8) in LZ4_decompress_generic()
156 op += length; ip += length; in LZ4_decompress_generic()
163 length = token & ML_MASK; /* match length */ in LZ4_decompress_generic()
170 if ((length != ML_MASK) && in LZ4_decompress_generic()
177 op += length + MINMATCH; in LZ4_decompress_generic()
191 if (length == RUN_MASK) { in LZ4_decompress_generic()
200 length += s; in LZ4_decompress_generic()
207 length < (uptrval)(op))) { in LZ4_decompress_generic()
213 length < (uptrval)(ip))) { in LZ4_decompress_generic()
220 cpy = op + length; in LZ4_decompress_generic()
224 || (ip + length > iend - (2 + 1 + LASTLITERALS)))) in LZ4_decompress_generic()
233 length = oend - op; in LZ4_decompress_generic()
236 && (ip + length > iend)) { in LZ4_decompress_generic()
255 && ((ip + length != iend) in LZ4_decompress_generic()
269 LZ4_memmove(op, ip, length); in LZ4_decompress_generic()
270 ip += length; in LZ4_decompress_generic()
271 op += length; in LZ4_decompress_generic()
283 ip += length; in LZ4_decompress_generic()
293 length = token & ML_MASK; in LZ4_decompress_generic()
313 if (length == ML_MASK) { in LZ4_decompress_generic()
322 length += s; in LZ4_decompress_generic()
327 (uptrval)(op) + length < (uptrval)op)) { in LZ4_decompress_generic()
333 length += MINMATCH; in LZ4_decompress_generic()
337 if (unlikely(op + length > oend - LASTLITERALS)) { in LZ4_decompress_generic()
341 length = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
344 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()
350 length); in LZ4_decompress_generic()
351 op += length; in LZ4_decompress_generic()
358 size_t const restSize = length - copySize; in LZ4_decompress_generic()
378 cpy = op + length; in LZ4_decompress_generic()
387 size_t const mlen = min(length, (size_t)(oend - op)); in LZ4_decompress_generic()
439 if (length > 16) in LZ4_decompress_generic()