/linux/lib/xz/ |
H A D | xz_dec_lzma2.c | 260 * including lzma.pos_mask are in the first 128 bytes on x86-32, 269 struct lzma_dec lzma; member 606 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs() 607 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs() 608 return s->lzma.literal[low + high]; in lzma_literal_probs() 623 if (lzma_state_is_literal(s->lzma.state)) { in lzma_literal() 627 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal() 646 lzma_state_literal(&s->lzma.state); in lzma_literal() 649 /* Decode the length of the match into s->lzma [all...] |
/linux/arch/mips/boot/ |
H A D | Makefile | 29 suffix-$(CONFIG_KERNEL_LZMA) := lzma 59 targets += vmlinux.bin.lzma 68 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE 69 $(call if_changed,lzma) 82 targets += uImage.lzma 94 $(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma FORCE 95 $(call if_changed,uimage,lzma) 126 targets += vmlinux.lzma.its 148 $(obj)/vmlinux.lzma [all...] |
/linux/arch/sh/boot/ |
H A D | Makefile | 25 suffix_$(CONFIG_KERNEL_LZMA) := lzma 30 uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin \ 31 vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ 74 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE 75 $(call if_changed,lzma) 89 $(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma FORCE 90 $(call if_changed,uimage,lzma)
|
/linux/fs/erofs/ |
H A D | decompressor_lzma.c | 76 struct z_erofs_lzma_cfgs *lzma = data; in z_erofs_load_lzma_config() local 81 if (!lzma || size < sizeof(struct z_erofs_lzma_cfgs)) { in z_erofs_load_lzma_config() 82 erofs_err(sb, "invalid lzma cfgs, size=%u", size); in z_erofs_load_lzma_config() 85 if (lzma->format) { in z_erofs_load_lzma_config() 86 erofs_err(sb, "unidentified lzma format %x, please check kernel version", in z_erofs_load_lzma_config() 87 le16_to_cpu(lzma->format)); in z_erofs_load_lzma_config() 90 dict_size = le32_to_cpu(lzma->dict_size); in z_erofs_load_lzma_config() 92 erofs_err(sb, "unsupported lzma dictionary size %u", in z_erofs_load_lzma_config() 168 /* 2. get an available lzma context */ in z_erofs_lzma_decompress() 234 .name = "lzma" [all...] |
/linux/arch/arm64/boot/ |
H A D | Makefile | 19 targets := Image Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo \ 34 $(obj)/Image.lzma: $(obj)/Image FORCE 35 $(call if_changed,lzma)
|
/linux/scripts/ |
H A D | Makefile.package | 24 git-config-tar.lzma = -c tar.tar.lzma.command="$(LZMA)" 34 suffix-lzma := .lzma 40 linux-tarballs := $(addprefix linux, .tar.gz .tar.bz2 .tar.lzma .tar.xz) 88 supported-deb-source-compress := gzip bzip2 lzma xz
|
/linux/arch/parisc/boot/compressed/ |
H A D | Makefile | 10 targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4 53 suffix-$(CONFIG_KERNEL_LZMA) := lzma 63 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
|
/linux/arch/sh/boot/compressed/ |
H A D | Makefile | 12 vmlinux.bin.lzma vmlinux.bin.xz vmlinux.bin.lzo $(OBJECTS) 45 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
|
/linux/arch/riscv/boot/ |
H A D | Makefile | 55 $(obj)/Image.lzma: $(obj)/Image FORCE 56 $(call if_changed,lzma)
|
/linux/arch/arc/ |
H A D | Makefile | 94 boot_targets := uImage.bin uImage.gz uImage.lzma 102 uimage-default-$(CONFIG_KERNEL_LZMA) := uImage.lzma
|
/linux/arch/s390/boot/ |
H A D | Makefile | 39 targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4 107 suffix-$(CONFIG_KERNEL_LZMA) := .lzma 118 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
|
/linux/arch/riscv/ |
H A D | Makefile | 164 boot-image-$(CONFIG_KERNEL_LZMA) := Image.lzma 192 BOOT_TARGETS := Image Image.gz Image.bz2 Image.lz4 Image.lzma Image.lzo Image.zst Image.xz loader loader.bin xipImage vmlinuz.efi 197 Image.gz Image.bz2 Image.lz4 Image.lzma Image.lzo Image.zst Image.xz loader xipImage vmlinuz.efi: Image 231 echo ' Image.lzma - Compressed kernel image (arch/riscv/boot/Image.lzma)'
|
/linux/arch/csky/boot/ |
H A D | Makefile | 10 compress-$(CONFIG_KERNEL_LZMA) = lzma
|
/linux/tools/build/ |
H A D | Makefile.feature | 95 lzma \ 152 lzma \
|
/linux/usr/ |
H A D | Makefile | 9 compress-$(CONFIG_INITRAMFS_COMPRESSION_LZMA) := lzma
|
H A D | Kconfig | 169 or lzma tools to be able to compress the initram.
|
/linux/scripts/package/ |
H A D | buildtar | 92 for i in Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo vmlinuz.efi ; do
|
/linux/arch/powerpc/boot/ |
H A D | wrapper | 151 [ "$1" != "gz" -o "$1" != "xz" -o "$1" != "lzma" -o "$1" != "lzo" -o "$1" != "none" ] || usage 404 .lzma) 405 xz --format=lzma -f -6 "$vmz.$$"
|
H A D | Makefile | 268 compressor-$(CONFIG_KERNEL_LZMA) := lzma
|
/linux/tools/perf/Documentation/ |
H A D | perf-check.txt | 67 lzma / HAVE_LZMA_SUPPORT
|
/linux/ |
H A D | .gitignore | 36 *.lzma
|
/linux/arch/sh/ |
H A D | Makefile | 162 BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.xz uImage.lzo \ 190 @echo ' uImage.lzma - Kernel-only image for U-Boot (lzma)'
|
/linux/arch/mips/ |
H A D | Makefile | 366 boot-y += uImage.lzma 371 boot-y += vmlinux.lzma.itb 457 echo ' uImage.lzma - U-Boot image (lzma)'
|
/linux/Documentation/driver-api/early-userspace/ |
H A D | buffer-format.rst | 28 LZMA() indicates lzma compression of the operand
|
/linux/tools/perf/util/ |
H A D | Build | 240 perf-util-$(CONFIG_LZMA) += lzma.o
|