Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dlzo.h21 #define lzo1x_worst_compress(x) ((x) + ((x) / 16) + 64 + 3 + 2) macro
/linux/fs/btrfs/
H A Dlzo.c61 #define WORKSPACE_BUF_LENGTH (lzo1x_worst_compress(PAGE_SIZE))
62 #define WORKSPACE_CBUF_LENGTH (lzo1x_worst_compress(PAGE_SIZE))
374 size_t out_len = lzo1x_worst_compress(sectorsize); in lzo_decompress_bio()
/linux/fs/jffs2/
H A Dcompr_lzo.c33 lzo_compress_buf = vmalloc(lzo1x_worst_compress(PAGE_SIZE)); in alloc_workspace()
/linux/lib/
H A Ddecompress_unlzo.c132 in_buf = malloc(lzo1x_worst_compress(LZO_BLOCK_SIZE)); in unlzo()