/kernel/linux/linux-6.6/lib/zstd/ |
H A D | Makefile | 17 compress/fse_compress.o \ 18 compress/hist.o \ 19 compress/huf_compress.o \ 20 compress/zstd_compress.o \ 21 compress/zstd_compress_literals.o \ 22 compress/zstd_compress_sequences.o \ 23 compress/zstd_compress_superblock.o \ 24 compress/zstd_double_fast.o \ 25 compress/zstd_fast.o \ 26 compress/zstd_laz [all...] |
/kernel/linux/linux-5.10/usr/ |
H A 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 [all...] |
/kernel/linux/linux-6.6/usr/ |
H A D | Makefile | 6 compress-y := copy 7 compress-$(CONFIG_INITRAMFS_COMPRESSION_GZIP) := gzip 8 compress-$(CONFIG_INITRAMFS_COMPRESSION_BZIP2) := bzip2 9 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZMA) := lzma 10 compress-$(CONFIG_INITRAMFS_COMPRESSION_XZ) := xzmisc 11 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZO) := lzo 12 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZ4) := lz4 13 compress-$(CONFIG_INITRAMFS_COMPRESSION_ZSTD) := zstd 40 compress-y := copy 81 $(call if_changed,$(compress [all...] |
/kernel/linux/linux-5.10/arch/csky/boot/ |
H A 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-6.6/arch/csky/boot/ |
H A D | Makefile | 8 compress-$(CONFIG_KERNEL_GZIP) = gzip 9 compress-$(CONFIG_KERNEL_LZO) = lzo 10 compress-$(CONFIG_KERNEL_LZMA) = lzma 11 compress-$(CONFIG_KERNEL_XZ) = xzkern 12 compress-$(CONFIG_KERNEL_LZ4) = lz4 15 $(call if_changed,$(compress-y)) 19 UIMAGE_COMPRESSION = $(compress-y)
|
/kernel/linux/linux-5.10/drivers/crypto/nx/ |
H A 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-6.6/drivers/crypto/nx/ |
H A 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-common-pseries.o 18 nx-compress-powernv-objs := nx-common-powernv.o
|
/kernel/linux/linux-6.6/include/crypto/internal/ |
H A D | blake2b.h | 27 blake2b_compress_t compress) in __blake2b_update() 35 (*compress)(state, state->buf, 1, BLAKE2B_BLOCK_SIZE); in __blake2b_update() 43 (*compress)(state, in, nblocks - 1, BLAKE2B_BLOCK_SIZE); in __blake2b_update() 52 blake2b_compress_t compress) in __blake2b_final() 59 (*compress)(state, state->buf, 1, state->buflen); in __blake2b_final() 98 blake2b_compress_t compress) in crypto_blake2b_update() 102 __blake2b_update(state, in, inlen, compress); in crypto_blake2b_update() 107 blake2b_compress_t compress) in crypto_blake2b_final() 111 __blake2b_final(state, out, compress); in crypto_blake2b_final() 25 __blake2b_update(struct blake2b_state *state, const u8 *in, size_t inlen, blake2b_compress_t compress) __blake2b_update() argument 51 __blake2b_final(struct blake2b_state *state, u8 *out, blake2b_compress_t compress) __blake2b_final() argument 96 crypto_blake2b_update(struct shash_desc *desc, const u8 *in, unsigned int inlen, blake2b_compress_t compress) crypto_blake2b_update() argument 106 crypto_blake2b_final(struct shash_desc *desc, u8 *out, blake2b_compress_t compress) crypto_blake2b_final() argument
|
H A D | scompress.h | 28 * @compress: Function performs a compress operation 29 * @decompress: Function performs a de-compress operation 30 * @stat: Statistics for compress algorithm 37 int (*compress)(struct crypto_scomp *tfm, const u8 *src, member 90 return crypto_scomp_alg(tfm)->compress(tfm, src, slen, dst, dlen, ctx); in crypto_scomp_compress()
|
/kernel/linux/linux-6.6/fs/pstore/ |
H A D | platform.c | 86 * The only remaining arguments supported by the compress= module parameter are 90 static char *compress = "deflate"; variable 91 module_param(compress, charp, 0444); 92 MODULE_PARM_DESC(compress, "compression to use"); 210 if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !compress || in allocate_buf_for_compression() 211 !strcmp(compress, "none")) { in allocate_buf_for_compression() 212 compress = NULL; in allocate_buf_for_compression() 216 if (strcmp(compress, "deflate")) { in allocate_buf_for_compression() 218 compress); in allocate_buf_for_compression() 219 compress in allocate_buf_for_compression() [all...] |
/kernel/linux/linux-6.6/arch/arm/boot/compressed/ |
H A D | Makefile | 79 compress-$(CONFIG_KERNEL_GZIP) = gzip 80 compress-$(CONFIG_KERNEL_LZO) = lzo_with_size 81 compress-$(CONFIG_KERNEL_LZMA) = lzma_with_size 82 compress-$(CONFIG_KERNEL_XZ) = xzkern_with_size 83 compress-$(CONFIG_KERNEL_LZ4) = lz4_with_size 162 $(call if_changed,$(compress-y))
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | i915_gpu_error.c | 997 struct i915_vma_compress *compress) in i915_vma_coredump_create() 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() 994 i915_vma_coredump_create(const struct intel_gt *gt, const struct i915_vma *vma, const char *name, struct i915_vma_compress *compress) i915_vma_coredump_create() argument 1398 intel_engine_coredump_add_vma(struct intel_engine_coredump *ee, struct intel_engine_capture_vma *capture, struct i915_vma_compress *compress) intel_engine_coredump_add_vma() argument 1433 capture_engine(struct intel_engine_cs *engine, struct i915_vma_compress *compress) capture_engine() argument 1462 gt_record_engines(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) gt_record_engines() argument 1490 gt_record_uc(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) gt_record_uc() argument 1791 struct i915_vma_compress *compress; i915_vma_capture_prepare() local 1807 i915_vma_capture_finish(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) i915_vma_capture_finish() argument 1834 struct i915_vma_compress *compress; i915_gpu_coredump() local [all...] |
H A 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() 319 struct i915_vma_compress *compress) in i915_vma_capture_finish() 305 intel_engine_coredump_add_vma(struct intel_engine_coredump *ee, struct intel_engine_capture_vma *capture, struct i915_vma_compress *compress) intel_engine_coredump_add_vma() argument 318 i915_vma_capture_finish(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) i915_vma_capture_finish() argument
|
/kernel/linux/linux-5.10/crypto/ |
H A 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 in crypto_report_acomp() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_gpu_error.c | 1085 struct i915_vma_compress *compress, in i915_vma_coredump_create() 1097 if (!vma_res || !vma_res->bi.pages || !compress) in i915_vma_coredump_create() 1104 if (!compress_start(compress)) { in i915_vma_coredump_create() 1138 ret = compress_page(compress, in i915_vma_coredump_create() 1163 ret = compress_page(compress, in i915_vma_coredump_create() 1179 ret = compress_page(compress, s, dst, false); in i915_vma_coredump_create() 1189 if (ret || compress_flush(compress, dst)) { in i915_vma_coredump_create() 1194 pool_free(&compress->pool, page_address(page)); in i915_vma_coredump_create() 1200 compress_finish(compress); in i915_vma_coredump_create() 1502 const char *name, struct i915_vma_compress *compress) in create_vma_coredump() 1083 i915_vma_coredump_create(const struct intel_gt *gt, const struct i915_vma_resource *vma_res, struct i915_vma_compress *compress, const char *name) i915_vma_coredump_create() argument 1501 create_vma_coredump(const struct intel_gt *gt, struct i915_vma *vma, const char *name, struct i915_vma_compress *compress) create_vma_coredump() argument 1521 add_vma_coredump(struct intel_engine_coredump *ee, const struct intel_gt *gt, struct i915_vma *vma, const char *name, struct i915_vma_compress *compress) add_vma_coredump() argument 1598 intel_engine_coredump_add_vma(struct intel_engine_coredump *ee, struct intel_engine_capture_vma *capture, struct i915_vma_compress *compress) intel_engine_coredump_add_vma() argument 1627 capture_engine(struct intel_engine_cs *engine, struct i915_vma_compress *compress, u32 dump_flags) capture_engine() argument 1666 gt_record_engines(struct intel_gt_coredump *gt, intel_engine_mask_t engine_mask, struct i915_vma_compress *compress, u32 dump_flags) gt_record_engines() argument 1717 gt_record_uc(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) gt_record_uc() argument 2057 struct i915_vma_compress *compress; i915_vma_capture_prepare() local 2071 i915_vma_capture_finish(struct intel_gt_coredump *gt, struct i915_vma_compress *compress) i915_vma_capture_finish() argument 2098 struct i915_vma_compress *compress; __i915_gpu_coredump() local [all...] |
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
H A 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/include/crypto/ |
H A D | acompress.h | 40 * @compress: Function performs a compress operation 41 * @decompress: Function performs a de-compress operation 48 int (*compress)(struct acomp_req *req); member 58 * @compress: Function performs a compress operation 59 * @decompress: Function performs a de-compress operation 77 int (*compress)(struct acomp_req *req); member 229 * @req: asynchronous compress request 253 * crypto_acomp_compress() -- Invoke asynchronous compress operatio [all...] |
/kernel/linux/linux-6.6/net/6lowpan/ |
H A D | nhc.c | 50 if (!(nhc && nhc->compress)) in lowpan_nhc_check_compression() 77 if (unlikely(!nhc || !nhc->compress)) { in lowpan_nhc_do_compression() 88 ret = nhc->compress(skb, hc_ptr); in lowpan_nhc_do_compression()
|
H A D | nhc.h | 34 .compress = _compress, \ 57 * @compress: callback to do the header compression. 68 int (*compress)(struct sk_buff *skb, u8 **hc_ptr); member 92 * lowpan_nhc_do_compression - calling compress callback for nhc
|
/kernel/linux/linux-5.10/drivers/fpga/ |
H A D | socfpga-a10.c | 170 bool encrypt, bool compress) in socfpga_a10_fpga_get_cd_ratio() 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() 169 socfpga_a10_fpga_get_cd_ratio(unsigned int cfg_width, bool encrypt, bool compress) socfpga_a10_fpga_get_cd_ratio() argument
|
/kernel/linux/linux-6.6/drivers/fpga/ |
H A D | socfpga-a10.c | 170 bool encrypt, bool compress) in socfpga_a10_fpga_get_cd_ratio() 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() 169 socfpga_a10_fpga_get_cd_ratio(unsigned int cfg_width, bool encrypt, bool compress) socfpga_a10_fpga_get_cd_ratio() argument
|
/kernel/linux/linux-5.10/drivers/block/zram/ |
H A 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/ |
H A 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()
|
H A D | nhc.h | 38 .compress = _compress, \ 64 * @compress: callback to do the header compression. 78 int (*compress)(struct sk_buff *skb, u8 **hc_ptr); member 102 * lowpan_nhc_do_compression - calling compress callback for nhc
|
/kernel/linux/linux-5.10/include/crypto/internal/ |
H A D | scompress.h | 24 * @compress: Function performs a compress operation 25 * @decompress: Function performs a de-compress operation 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()
|