Home
last modified time | relevance | path

Searched refs:compress (Results 1 – 25 of 209) sorted by relevance

123456789

/openbmc/linux/lib/zstd/
H A DMakefile17 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 \
24 compress/zstd_double_fast.o \
25 compress/zstd_fast.o \
26 compress/zstd_lazy.o \
27 compress/zstd_ldm.o \
[all …]
/openbmc/linux/usr/
H A DMakefile6 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-y))
/openbmc/linux/arch/csky/boot/
H A DMakefile8 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)
/openbmc/linux/drivers/crypto/nx/
H A DMakefile14 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
/openbmc/linux/include/crypto/internal/
H A Dblake2b.h27 blake2b_compress_t compress) in __blake2b_update() argument
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() argument
59 (*compress)(state, state->buf, 1, state->buflen); in __blake2b_final()
98 blake2b_compress_t compress) in crypto_blake2b_update() argument
102 __blake2b_update(state, in, inlen, compress); in crypto_blake2b_update()
107 blake2b_compress_t compress) in crypto_blake2b_final() argument
111 __blake2b_final(state, out, compress); in crypto_blake2b_final()
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dcompression.py8 import bb.compress.lz4
9 import bb.compress.zstd
45 with self.do_open(w, mode="w" + mode_suffix) as compress:
46 compress.write(data)
75 with bb.compress.lz4.open(*args, **kwargs) as f:
87 with bb.compress.zstd.open(*args, **kwargs) as f:
99 with bb.compress.zstd.open(*args, num_threads=2, **kwargs) as f:
/openbmc/qemu/docs/
H A Dmulti-thread-compression.txt20 compress the RAM page before sending; after receiving, the data will
74 | original | compress thread: 8
94 | original | compress thread: 8
114 {qemu} ... compress: off ...
117 {qemu} migrate_set_capability compress on
120 {qemu} migrate_set_parameter compress-threads 12
123 {qemu} migrate_set_parameter compress-level 1
131 Capabilities: ... compress: on
135 compress: off
136 compress-threads: 8
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/compress/
H A Dlz4.py7 import bb.compress._pipecompress
11 return bb.compress._pipecompress.open_wrap(LZ4File, *args, **kwargs)
14 class LZ4File(bb.compress._pipecompress.PipeFile):
H A Dzstd.py7 import bb.compress._pipecompress
12 return bb.compress._pipecompress.open_wrap(ZstdFile, *args, **kwargs)
15 class ZstdFile(bb.compress._pipecompress.PipeFile):
/openbmc/linux/fs/pstore/
H A Dplatform.c90 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 = "deflate"; in allocate_buf_for_compression()
231 psinfo->bufsize, compress); in allocate_buf_for_compression()
[all …]
/openbmc/u-boot/drivers/fpga/
H A Dsocfpga_arria10.c159 bool encrypt, compress; in fpgamgr_set_cdratio_cdwidth() local
172 compress = (rbf_data[COMPRESSION_OFFSET] >> 1) & 1; in fpgamgr_set_cdratio_cdwidth()
173 compress = !compress; in fpgamgr_set_cdratio_cdwidth()
177 debug("read from rbf header: encrypt=%d compress=%d\n", encrypt, compress); in fpgamgr_set_cdratio_cdwidth()
199 if (!compress && !encrypt) { in fpgamgr_set_cdratio_cdwidth()
202 if (compress) in fpgamgr_set_cdratio_cdwidth()
/openbmc/linux/arch/arm/boot/compressed/
H A DMakefile79 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))
/openbmc/linux/scripts/
H A DMakefile.package106 supported-deb-source-compress := gzip bzip2 lzma xz
108 PHONY += linux.tar.unsupported-deb-src-compress
109 linux.tar.unsupported-deb-src-compress:
114 $(strip $(if $(filter $(supported-deb-source-compress), $(KDEB_SOURCE_COMPRESS)), \
115 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress))
177 compress-tar.gz = -I "$(KGZIP)"
178 compress-tar.bz2 = -I "$(KBZIP2)"
179 compress-tar.xz = -I "$(XZ)"
180 compress-tar.zst = -I "$(ZSTD)"
183 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
H A DMakefile.debug33 KBUILD_LDFLAGS += --compress-debug-sections=zlib
37 KBUILD_LDFLAGS += --compress-debug-sections=zstd
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_gpu_error.c1200 compress_finish(compress); in i915_vma_coredump_create()
1620 "HW Status", compress); in intel_engine_coredump_add_vma()
1623 "WA context", compress); in intel_engine_coredump_add_vma()
2059 compress = kmalloc(sizeof(*compress), ALLOW_FAIL); in i915_vma_capture_prepare()
2060 if (!compress) in i915_vma_capture_prepare()
2064 kfree(compress); in i915_vma_capture_prepare()
2068 return compress; in i915_vma_capture_prepare()
2074 if (!compress) in i915_vma_capture_finish()
2077 compress_fini(compress); in i915_vma_capture_finish()
2078 kfree(compress); in i915_vma_capture_finish()
[all …]
/openbmc/u-boot/tools/binman/test/
H A D083_compress.dts7 filename = "compress";
8 compress = "lz4";
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dcompress_doc.bbclass19 # DOC_COMPRESS_CMD[abc] = 'abc compress cmd ***'
96 bb.note('compress hardlink %s' % target)
99 …bb.warn("de/compress file failed %s (cmd was %s)%s" % (retval, cmd, ":\n%s" % output if output els…
104 # Remove compress suffix
109 # Append compress suffix
123 # Remove compress suffix
127 # Append compress suffix
161 # Remove the compress suffix
189 … bb.warn("compress failed %s (cmd was %s)%s" % (retval, cmd, ":\n%s" % output if output else ""))
191 bb.note('compress file %s' % file)
[all …]
/openbmc/linux/drivers/fpga/
H A Dsocfpga-a10.c170 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()
/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A Dperl-rdepends.txt199 RDEPENDS:perl-module-compress-zlib += "perl-module-compress-raw-zlib"
202 RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-base-common"
203 RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-gzip"
204 RDEPENDS:perl-module-compress-zlib += "perl-module-io-compress-gzip-constants"
948 RDEPENDS:perl-module-io-compress-bzip2 += "perl-module-io-compress-base"
970 RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-rawdeflate"
971 RDEPENDS:perl-module-io-compress-gzip += "perl-module-io-compress-zlib-extra"
988 RDEPENDS:perl-module-io-compress-zip += "perl-module-compress-raw-zlib"
995 RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-bzip2 "
996 RDEPENDS:perl-module-io-compress-zip += "perl-module-io-compress-rawdeflate"
[all …]
/openbmc/linux/net/6lowpan/
H A Dnhc.c50 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()
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Dqcom,q6asm-dais.yaml53 is-compress-dai:
59 is-compress-dai: [ direction ]
93 is-compress-dai;
/openbmc/openbmc/poky/meta/recipes-extended/man-db/
H A Dman-db_2.12.1.bb60 compress = d.getVar("DOC_COMPRESS")
61 if compress == "gz":
63 elif compress == "bz2":
65 elif compress == "xz":
/openbmc/u-boot/test/
H A Dcompression.c312 mutate_func compress, mutate_func uncompress, in run_test_internal() argument
320 errcheck(compress(uts, buf->orig_buf, buf->orig_size, in run_test_internal()
351 ret = compress(uts, buf->orig_buf, buf->orig_size, in run_test_internal()
375 mutate_func compress, mutate_func uncompress) in run_test() argument
395 ret = run_test_internal(uts, name, compress, uncompress, buf); in run_test()
459 mutate_func compress) in run_bootm_test() argument
472 compress(uts, (void *)plain, unc_len, compress_buff, compress_size, in run_bootm_test()
/openbmc/openbmc/poky/meta/recipes-extended/texinfo/
H A Dtexinfo_7.1.bb14 compress = d.getVar("DOC_COMPRESS")
15 if compress == "gz":
17 elif compress == "bz2":
19 elif compress == "xz":
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.logrotate10 compress
33 compress

123456789