Lines Matching defs:length
223 * symbol and codeword length. The low 11 bits are the
224 * symbol, and the high 5 bits are the codeword length.
245 * The length and offset must be already validated --- that is, (dst - offset)
246 * can't underrun the output buffer, and (dst + length) can't overrun the output
247 * buffer. Also, the length cannot be 0.
252 * Returns dst + length.
254 static forceinline u8 *lz_copy(u8 *dst, u32 length, u32 offset, const u8 *bufend,
266 * Also note that we might copy more than the length of the match. For
267 * example, if a word is 8 bytes and the match is of length 5, then
273 u8 * const end = dst + length;
301 /* Offset 1 matches are equivalent to run-length
330 length--;
334 length--;
338 } while (--length);