Lines Matching refs:dst
23 void *dst; member
52 lzo_ctx->dst, &compress_size, lzo_ctx->wmem); in regcache_lzo_compress()
66 lzo_ctx->dst, &dst_len); in regcache_lzo_decompress()
78 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_compress_cache_block()
79 if (!lzo_ctx->dst) { in regcache_lzo_compress_cache_block()
96 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_decompress_cache_block()
97 if (!lzo_ctx->dst) { in regcache_lzo_decompress_cache_block()
224 kfree(lzo_blocks[i]->dst); in regcache_lzo_exit()
252 tmp_dst = lzo_block->dst; in regcache_lzo_read()
256 lzo_block->src = lzo_block->dst; in regcache_lzo_read()
263 *value = regcache_get_val(map, lzo_block->dst, blkpos); in regcache_lzo_read()
265 kfree(lzo_block->dst); in regcache_lzo_read()
267 lzo_block->dst = tmp_dst; in regcache_lzo_read()
291 tmp_dst = lzo_block->dst; in regcache_lzo_write()
295 lzo_block->src = lzo_block->dst; in regcache_lzo_write()
301 kfree(lzo_block->dst); in regcache_lzo_write()
306 if (regcache_set_val(map, lzo_block->dst, blkpos, value)) { in regcache_lzo_write()
307 kfree(lzo_block->dst); in regcache_lzo_write()
312 lzo_block->src = lzo_block->dst; in regcache_lzo_write()
318 kfree(lzo_block->dst); in regcache_lzo_write()
329 lzo_block->dst = tmp_dst; in regcache_lzo_write()