Lines Matching refs:dst_len
26 size_t dst_len; member
53 if (ret != LZO_E_OK || compress_size > lzo_ctx->dst_len) in regcache_lzo_compress()
55 lzo_ctx->dst_len = compress_size; in regcache_lzo_compress()
61 size_t dst_len; in regcache_lzo_decompress() local
64 dst_len = lzo_ctx->dst_len; in regcache_lzo_decompress()
66 lzo_ctx->dst, &dst_len); in regcache_lzo_decompress()
67 if (ret != LZO_E_OK || dst_len != lzo_ctx->dst_len) in regcache_lzo_decompress()
77 lzo_ctx->dst_len = lzo1x_worst_compress(PAGE_SIZE); in regcache_lzo_compress_cache_block()
78 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_compress_cache_block()
80 lzo_ctx->dst_len = 0; in regcache_lzo_compress_cache_block()
95 lzo_ctx->dst_len = lzo_ctx->decompressed_size; in regcache_lzo_decompress_cache_block()
96 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_decompress_cache_block()
98 lzo_ctx->dst_len = 0; in regcache_lzo_decompress_cache_block()
253 tmp_dst_len = lzo_block->dst_len; in regcache_lzo_read()
257 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_read()
268 lzo_block->dst_len = tmp_dst_len; in regcache_lzo_read()
292 tmp_dst_len = lzo_block->dst_len; in regcache_lzo_write()
296 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_write()
313 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_write()
330 lzo_block->dst_len = tmp_dst_len; in regcache_lzo_write()