Home
last modified time | relevance | path

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

/drivers/base/regmap/
Dregcache-lzo.c26 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()
[all …]
/drivers/block/zram/
Dzcomp_lz4.c46 size_t *dst_len, void *private) in zcomp_lz4_compress() argument
49 return lz4_compress(src, PAGE_SIZE, dst, dst_len, private); in zcomp_lz4_compress()
55 size_t dst_len = PAGE_SIZE; in zcomp_lz4_decompress() local
57 return lz4_decompress_unknownoutputsize(src, src_len, dst, &dst_len); in zcomp_lz4_decompress()
Dzcomp_lzo.c46 size_t *dst_len, void *private) in lzo_compress() argument
48 int ret = lzo1x_1_compress(src, PAGE_SIZE, dst, dst_len, private); in lzo_compress()
55 size_t dst_len = PAGE_SIZE; in lzo_decompress() local
56 int ret = lzo1x_decompress_safe(src, src_len, dst, &dst_len); in lzo_decompress()
Dzcomp.h31 size_t *dst_len, void *private);
62 const unsigned char *src, size_t *dst_len);
Dzcomp.c305 const unsigned char *src, size_t *dst_len) in zcomp_compress() argument
307 return comp->backend->compress(src, zstrm->buffer, dst_len, in zcomp_compress()
/drivers/video/fbdev/msm/
Dmdp.c282 unsigned long src_start = 0, src_len = 0, dst_start = 0, dst_len = 0; in mdp_blit() local
304 if (unlikely(get_img(&req->dst, fb, &dst_start, &dst_len, &dst_file))) { in mdp_blit()
327 dst_len); in mdp_blit()
344 dst_len); in mdp_blit()
Dmdp_ppp.c537 unsigned long dst_start, unsigned long dst_len, in valid_src_dst() argument
543 unsigned long dst_max_ok = dst_start + dst_len; in valid_src_dst()
648 struct file *dst_file, unsigned long dst_start, unsigned long dst_len) in mdp_ppp_blit() argument
696 if (!valid_src_dst(src_start, src_len, dst_start, dst_len, req, in mdp_ppp_blit()
Dmdp_hw.h30 unsigned long dst_start, unsigned long dst_len);
/drivers/media/usb/msi2500/
Dmsi2500.c262 unsigned int i, j, transactions, dst_len = 0; in msi2500_convert_stream() local
297 dst_len += 1008; in msi2500_convert_stream()
319 dst_len += 1008; in msi2500_convert_stream()
329 dst_len += 984; in msi2500_convert_stream()
336 dst_len += 1008; in msi2500_convert_stream()
343 dst_len += 1008; in msi2500_convert_stream()
350 dst_len += 1008; in msi2500_convert_stream()
372 return dst_len; in msi2500_convert_stream()
/drivers/media/usb/airspy/
Dairspy.c244 unsigned int dst_len; in airspy_convert_stream() local
248 dst_len = src_len; in airspy_convert_stream()
250 dst_len = 0; in airspy_convert_stream()
270 return dst_len; in airspy_convert_stream()
/drivers/video/fbdev/omap2/dss/
Domapdss-boot-init.c71 static void __init omapdss_prefix_strcpy(char *dst, int dst_len, in omapdss_prefix_strcpy() argument
/drivers/media/dvb-frontends/
Drtl2832_sdr.c350 unsigned int dst_len; in rtl2832_sdr_convert_stream() local
355 dst_len = src_len; in rtl2832_sdr_convert_stream()
363 dst_len = 2 * src_len; in rtl2832_sdr_convert_stream()
365 dst_len = 0; in rtl2832_sdr_convert_stream()
386 return dst_len; in rtl2832_sdr_convert_stream()
/drivers/crypto/caam/
Dcaamhash.c606 struct ahash_request *req, int dst_len) in ahash_unmap() argument
612 dma_unmap_single(dev, edesc->dst_dma, dst_len, DMA_FROM_DEVICE); in ahash_unmap()
621 struct ahash_request *req, int dst_len, u32 flag) in ahash_unmap_ctx() argument
629 ahash_unmap(dev, edesc, req, dst_len); in ahash_unmap_ctx()