Lines Matching defs:offset
243 * Copy an LZ77 match at (dst - offset) to dst.
245 * The length and offset must be already validated --- that is, (dst - offset)
254 static forceinline u8 *lz_copy(u8 *dst, u32 length, u32 offset, const u8 *bufend,
257 const u8 *src = dst - offset;
277 if (offset >= WORDBYTES) {
299 } else if (offset == 1) {
315 * We don't bother with special cases for other 'offset <
316 * WORDBYTES', which are usually rarer than 'offset == 1'. Extra
318 * to handle all the 'offset < WORDBYTES' cases using the same
321 * 'offset == 1' case.