Lines Matching refs:dst_len
22 size_t dst_len; member
49 if (ret != LZO_E_OK || compress_size > lzo_ctx->dst_len) in regcache_lzo_compress()
51 lzo_ctx->dst_len = compress_size; in regcache_lzo_compress()
57 size_t dst_len; in regcache_lzo_decompress() local
60 dst_len = lzo_ctx->dst_len; in regcache_lzo_decompress()
62 lzo_ctx->dst, &dst_len); in regcache_lzo_decompress()
63 if (ret != LZO_E_OK || dst_len != lzo_ctx->dst_len) in regcache_lzo_decompress()
73 lzo_ctx->dst_len = lzo1x_worst_compress(PAGE_SIZE); in regcache_lzo_compress_cache_block()
74 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_compress_cache_block()
76 lzo_ctx->dst_len = 0; in regcache_lzo_compress_cache_block()
91 lzo_ctx->dst_len = lzo_ctx->decompressed_size; in regcache_lzo_decompress_cache_block()
92 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_decompress_cache_block()
94 lzo_ctx->dst_len = 0; in regcache_lzo_decompress_cache_block()
245 tmp_dst_len = lzo_block->dst_len; in regcache_lzo_read()
249 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_read()
260 lzo_block->dst_len = tmp_dst_len; in regcache_lzo_read()
282 tmp_dst_len = lzo_block->dst_len; in regcache_lzo_write()
286 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_write()
303 lzo_block->src_len = lzo_block->dst_len; in regcache_lzo_write()
320 lzo_block->dst_len = tmp_dst_len; in regcache_lzo_write()