/drivers/base/regmap/ |
D | regcache-lzo.c | 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() [all …]
|
/drivers/block/zram/ |
D | zcomp_lz4.c | 46 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()
|
D | zcomp_lzo.c | 46 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()
|
D | zcomp.h | 31 size_t *dst_len, void *private); 62 const unsigned char *src, size_t *dst_len);
|
D | zcomp.c | 305 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/ |
D | mdp.c | 282 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()
|
D | mdp_ppp.c | 537 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()
|
D | mdp_hw.h | 30 unsigned long dst_start, unsigned long dst_len);
|
/drivers/media/usb/msi2500/ |
D | msi2500.c | 262 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/ |
D | airspy.c | 244 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/ |
D | omapdss-boot-init.c | 71 static void __init omapdss_prefix_strcpy(char *dst, int dst_len, in omapdss_prefix_strcpy() argument
|
/drivers/media/dvb-frontends/ |
D | rtl2832_sdr.c | 350 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/ |
D | caamhash.c | 606 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()
|