Home
last modified time | relevance | path

Searched refs:dst_len (Results 1 – 1 of 1) sorted by relevance

/lib/
Ddecompress_unlzo.c106 u32 src_len, dst_len; in unlzo() local
182 dst_len = get_unaligned_be32(in_buf); in unlzo()
187 if (dst_len == 0) { in unlzo()
193 if (dst_len > LZO_BLOCK_SIZE) { in unlzo()
212 if (src_len <= 0 || src_len > dst_len) { in unlzo()
227 tmp = dst_len; in unlzo()
232 if (unlikely(dst_len == src_len)) in unlzo()
238 if (r != LZO_E_OK || dst_len != tmp) { in unlzo()
244 if (flush && flush(out_buf, dst_len) != dst_len) in unlzo()
247 out_buf += dst_len; in unlzo()