/kernel/linux/linux-5.10/usr/ |
D | Makefile | 11 compress-y := shipped 12 compress-$(CONFIG_INITRAMFS_COMPRESSION_GZIP) := gzip 13 compress-$(CONFIG_INITRAMFS_COMPRESSION_BZIP2) := bzip2 14 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZMA) := lzma 15 compress-$(CONFIG_INITRAMFS_COMPRESSION_XZ) := xzmisc 16 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZO) := lzo 17 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZ4) := lz4 18 compress-$(CONFIG_INITRAMFS_COMPRESSION_ZSTD) := zstd 45 compress-y := shipped 85 $(call if_changed,$(compress-y))
|
D | Kconfig | 131 compression tool to compress the generated initram cpio file for 157 available to be able to compress the initram. 170 or lzma tools to be able to compress the initram. 183 tool to be able to compress the initram. 195 tool to be able to compress the initram. 213 with fast decompression speed. It will compress better than GZIP and 217 tool to be able to compress the initram. 222 Do not compress the built-in initramfs at all. This may sound wasteful
|
/kernel/linux/linux-5.10/arch/csky/boot/ |
D | Makefile | 9 compress-$(CONFIG_KERNEL_GZIP) = gzip 10 compress-$(CONFIG_KERNEL_LZO) = lzo 11 compress-$(CONFIG_KERNEL_LZMA) = lzma 12 compress-$(CONFIG_KERNEL_XZ) = xzkern 13 compress-$(CONFIG_KERNEL_LZ4) = lz4 16 $(call if_changed,$(compress-y)) 20 UIMAGE_COMPRESSION = $(compress-y)
|
/kernel/linux/linux-5.10/drivers/crypto/nx/ |
D | Makefile | 14 obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES) += nx-compress-pseries.o nx-compress.o 15 obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV) += nx-compress-powernv.o nx-compress.o 16 nx-compress-objs := nx-842.o 17 nx-compress-pseries-objs := nx-842-pseries.o 18 nx-compress-powernv-objs := nx-common-powernv.o
|
/kernel/linux/linux-5.10/crypto/ |
D | crypto_user_stat.c | 72 rcomp.stat_compress_cnt = atomic64_read(&alg->stats.compress.compress_cnt); in crypto_report_comp() 73 rcomp.stat_compress_tlen = atomic64_read(&alg->stats.compress.compress_tlen); in crypto_report_comp() 74 rcomp.stat_decompress_cnt = atomic64_read(&alg->stats.compress.decompress_cnt); in crypto_report_comp() 75 rcomp.stat_decompress_tlen = atomic64_read(&alg->stats.compress.decompress_tlen); in crypto_report_comp() 76 rcomp.stat_err_cnt = atomic64_read(&alg->stats.compress.err_cnt); in crypto_report_comp() 88 racomp.stat_compress_cnt = atomic64_read(&alg->stats.compress.compress_cnt); in crypto_report_acomp() 89 racomp.stat_compress_tlen = atomic64_read(&alg->stats.compress.compress_tlen); in crypto_report_acomp() 90 racomp.stat_decompress_cnt = atomic64_read(&alg->stats.compress.decompress_cnt); in crypto_report_acomp() 91 racomp.stat_decompress_tlen = atomic64_read(&alg->stats.compress.decompress_tlen); in crypto_report_acomp() 92 racomp.stat_err_cnt = atomic64_read(&alg->stats.compress.err_cnt); in crypto_report_acomp()
|
D | 842.c | 104 .cra_u = { .compress = { 112 .compress = crypto842_scompress,
|
D | lz4.c | 115 .cra_u = { .compress = { 123 .compress = lz4_scompress,
|
D | lz4hc.c | 116 .cra_u = { .compress = { 124 .compress = lz4hc_scompress,
|
D | lzo-rle.c | 118 .cra_u = { .compress = { 126 .compress = lzorle_scompress,
|
D | lzo.c | 118 .cra_u = { .compress = { 126 .compress = lzo_scompress,
|
D | deflate.c | 284 .cra_u = { .compress = { 292 .compress = deflate_scompress, 302 .compress = deflate_scompress,
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
D | i915_gpu_error.c | 997 struct i915_vma_compress *compress) in i915_vma_coredump_create() argument 1008 if (!vma || !vma->pages || !compress) in i915_vma_coredump_create() 1017 if (!compress_start(compress)) { in i915_vma_coredump_create() 1043 ret = compress_page(compress, in i915_vma_coredump_create() 1058 ret = compress_page(compress, in i915_vma_coredump_create() 1074 ret = compress_page(compress, s, dst, false); in i915_vma_coredump_create() 1084 if (ret || compress_flush(compress, dst)) { in i915_vma_coredump_create() 1086 pool_free(&compress->pool, dst->pages[dst->page_count]); in i915_vma_coredump_create() 1090 compress_finish(compress); in i915_vma_coredump_create() 1400 struct i915_vma_compress *compress) in intel_engine_coredump_add_vma() argument [all …]
|
D | i915_gpu_error.h | 240 struct i915_vma_compress *compress); 246 struct i915_vma_compress *compress); 307 struct i915_vma_compress *compress) in intel_engine_coredump_add_vma() argument 319 struct i915_vma_compress *compress) in i915_vma_capture_finish() argument
|
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
D | Makefile | 79 compress-$(CONFIG_KERNEL_GZIP) = gzip 80 compress-$(CONFIG_KERNEL_LZO) = lzo 81 compress-$(CONFIG_KERNEL_LZMA) = lzma 82 compress-$(CONFIG_KERNEL_XZ) = xzkern 83 compress-$(CONFIG_KERNEL_LZ4) = lz4 201 $(call if_changed,$(compress-y))
|
/kernel/linux/linux-5.10/drivers/fpga/ |
D | socfpga-a10.c | 170 bool encrypt, bool compress) in socfpga_a10_fpga_get_cd_ratio() argument 188 if (!compress && !encrypt) in socfpga_a10_fpga_get_cd_ratio() 191 if (compress) in socfpga_a10_fpga_get_cd_ratio() 209 int encrypt, compress; in socfpga_a10_fpga_set_cdratio() local 215 compress = socfpga_a10_fpga_compressed((u32 *)buf, count / 4); in socfpga_a10_fpga_set_cdratio() 216 if (compress < 0) in socfpga_a10_fpga_set_cdratio() 219 cd_ratio = socfpga_a10_fpga_get_cd_ratio(cfg_width, encrypt, compress); in socfpga_a10_fpga_set_cdratio()
|
/kernel/linux/linux-5.10/include/crypto/ |
D | acompress.h | 48 int (*compress)(struct acomp_req *req); member 77 int (*compress)(struct acomp_req *req); member 269 ret = tfm->compress(req); in crypto_acomp_compress()
|
/kernel/linux/linux-5.10/drivers/block/zram/ |
D | zcomp.c | 207 struct zcomp *zcomp_create(const char *compress) in zcomp_create() argument 217 if (!zcomp_available_algorithm(compress)) in zcomp_create() 224 comp->name = compress; in zcomp_create()
|
/kernel/linux/linux-5.10/net/6lowpan/ |
D | nhc.h | 38 .compress = _compress, \ 78 int (*compress)(struct sk_buff *skb, u8 **hc_ptr); member
|
D | nhc.c | 101 if (!(nhc && nhc->compress)) in lowpan_nhc_check_compression() 128 if (unlikely(!nhc || !nhc->compress)) { in lowpan_nhc_do_compression() 139 ret = nhc->compress(skb, hc_ptr); in lowpan_nhc_do_compression()
|
/kernel/linux/linux-5.10/include/crypto/internal/ |
D | scompress.h | 31 int (*compress)(struct crypto_scomp *tfm, const u8 *src, member 80 return crypto_scomp_alg(tfm)->compress(tfm, src, slen, dst, dlen, ctx); in crypto_scomp_compress()
|
/kernel/linux/linux-5.10/fs/jffs2/ |
D | compr.c | 92 if (!this->compress || this->disabled) in jffs2_selected_compress() 108 err = this->compress(data_in, output_buf, datalen, cdatalen); in jffs2_selected_compress() 178 if ((!this->compress)||(this->disabled)) in jffs2_compress() 206 compr_ret = this->compress(data_in, this->compr_buf, datalen, cdatalen); in jffs2_compress()
|
/kernel/linux/linux-5.10/fs/f2fs/ |
D | Kconfig | 111 Support LZO compress algorithm, if unsure, say Y. 120 Support LZ4 compress algorithm, if unsure, say Y. 129 Support ZSTD compress algorithm, if unsure, say Y. 139 Support LZO-RLE compress algorithm, if unsure, say Y.
|
/kernel/linux/linux-5.10/sound/core/ |
D | Makefile | 39 snd-compress-objs := compress_offload.o 53 obj-$(CONFIG_SND_COMPRESS_OFFLOAD) += snd-compress.o
|
/kernel/linux/linux-5.10/drivers/media/platform/davinci/ |
D | isif.c | 63 .compress = { 586 if (module_params->compress.alg == ISIF_ALAW) in isif_config_raw() 593 if (module_params->compress.alg == ISIF_DPCM) { in isif_config_raw() 595 (module_params->compress.pred << in isif_config_raw() 732 if ((isif_cfg.bayer.config_params.compress.alg != in isif_set_pixel_format() 734 (isif_cfg.bayer.config_params.compress.alg != in isif_set_pixel_format() 742 isif_cfg.bayer.config_params.compress.alg = in isif_set_pixel_format() 765 if (isif_cfg.bayer.config_params.compress.alg == ISIF_ALAW || in isif_get_pixel_format() 766 isif_cfg.bayer.config_params.compress.alg == ISIF_DPCM) in isif_get_pixel_format()
|
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/ |
D | qcom,q6asm.txt | 46 - is-compress-dai: 67 is-compress-dai;
|