/Linux-v5.15/fs/squashfs/ |
D | decompressor_multi_percpu.c | 41 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create() 56 msblk->decompressor->free(stream->stream); in squashfs_decompressor_create() 72 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy() 87 res = msblk->decompressor->decompress(msblk, stream->stream, bio, in squashfs_decompress() 94 msblk->decompressor->name); in squashfs_decompress()
|
D | decompressor_single.c | 37 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create() 57 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy() 70 res = msblk->decompressor->decompress(msblk, stream->stream, bio, in squashfs_decompress() 76 msblk->decompressor->name); in squashfs_decompress()
|
D | decompressor.c | 65 static const struct squashfs_decompressor *decompressor[] = { variable 80 for (i = 0; decompressor[i]->id; i++) in squashfs_lookup_decompressor() 81 if (id == decompressor[i]->id) in squashfs_lookup_decompressor() 84 return decompressor[i]; in squashfs_lookup_decompressor()
|
D | decompressor_multi.c | 88 decomp_strm->stream = msblk->decompressor->init(msblk, in squashfs_decompressor_create() 116 msblk->decompressor->free(decomp_strm->stream); in squashfs_decompressor_destroy() 156 decomp_strm->stream = msblk->decompressor->init(msblk, in get_decomp_stream() 190 res = msblk->decompressor->decompress(msblk, decomp_stream->stream, in squashfs_decompress() 195 msblk->decompressor->name); in squashfs_decompress()
|
D | decompressor.h | 29 return msblk->decompressor->comp_opts ? in squashfs_comp_opts() 30 msblk->decompressor->comp_opts(msblk, buff, length) : NULL; in squashfs_comp_opts()
|
D | super.c | 91 const struct squashfs_decompressor *decompressor; in supported_squashfs_filesystem() local 104 decompressor = squashfs_lookup_decompressor(id); in supported_squashfs_filesystem() 105 if (!decompressor->supported) { in supported_squashfs_filesystem() 107 decompressor->name); in supported_squashfs_filesystem() 111 return decompressor; in supported_squashfs_filesystem() 171 msblk->decompressor = supported_squashfs_filesystem( in squashfs_fill_super() 176 if (msblk->decompressor == NULL) in squashfs_fill_super()
|
D | Kconfig | 77 By default Squashfs uses a single decompressor but it gives 79 machines due to waiting on decompressor availability. 84 This decompressor implementation uses up to two parallel 91 By default Squashfs uses a single decompressor but it gives 93 machines due to waiting on decompressor availability. 95 This decompressor implementation uses a maximum of one 96 decompressor per core. It uses percpu variables to ensure
|
D | squashfs_fs_sb.h | 44 const struct squashfs_decompressor *decompressor; member
|
D | Makefile | 8 squashfs-y += namei.o super.o symlink.o decompressor.o
|
/Linux-v5.15/fs/ntfs3/lib/ |
D | xpress_decompress.c | 57 int xpress_decompress(struct xpress_decompressor *decompressor, in xpress_decompress() argument 61 struct xpress_decompressor *d = decompressor; in xpress_decompress() 139 void xpress_free_decompressor(struct xpress_decompressor *decompressor) in xpress_free_decompressor() argument 141 kfree(decompressor); in xpress_free_decompressor()
|
D | lzx_decompress.c | 590 int lzx_decompress(struct lzx_decompressor *decompressor, in lzx_decompress() argument 594 struct lzx_decompressor *d = decompressor; in lzx_decompress() 667 void lzx_free_decompressor(struct lzx_decompressor *decompressor) in lzx_free_decompressor() argument 669 kfree(decompressor); in lzx_free_decompressor()
|
/Linux-v5.15/init/ |
D | do_mounts_rd.c | 59 decompress_fn *decompressor) in identify_ramdisk_image() argument 88 *decompressor = decompress_method(buf, size, &compress_name); in identify_ramdisk_image() 92 if (!*decompressor) in identify_ramdisk_image() 193 decompress_fn decompressor = NULL; in rd_load_image() local 207 nblocks = identify_ramdisk_image(in_file, in_pos, &decompressor); in rd_load_image() 212 if (crd_load(decompressor) == 0) in rd_load_image()
|
/Linux-v5.15/lib/ |
D | decompress.c | 48 decompress_fn decompressor; member 83 return cf->decompressor; in decompress_method()
|
/Linux-v5.15/arch/s390/boot/compressed/ |
D | vmlinux.lds.S | 79 .decompressor.syms : { 83 *(.decompressor.syms)
|
D | Makefile | 14 obj-y := $(if $(CONFIG_KERNEL_UNCOMPRESSED),,decompressor.o) info.o 45 OBJCOPYFLAGS_syms.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.decompressor.…
|
/Linux-v5.15/Documentation/arm/ |
D | porting.rst | 21 Start address of decompressor. There's no point in talking about 23 the time when you call the decompressor code. You normally call 29 Start address of zero-initialised work area for the decompressor. 30 This must be pointing at RAM. The decompressor will zero initialise 94 when using the decompressor.
|
D | booting.rst | 123 the kernel decompressor nor initrd 'bootp' program will overwrite 138 placed in a region of memory where the kernel decompressor will not 153 a region of memory where the kernel decompressor will not overwrite it
|
/Linux-v5.15/fs/erofs/ |
D | Makefile | 6 erofs-$(CONFIG_EROFS_FS_ZIP) += decompressor.o zmap.o zdata.o
|
/Linux-v5.15/Documentation/x86/ |
D | booting-dt.rst | 7 the decompressor (the real mode entry point goes to the same 32bit
|
/Linux-v5.15/Documentation/staging/ |
D | xz.rst | 14 The XZ decompressor in Linux is called XZ Embedded. It supports 28 The xz_dec module provides XZ decompressor with single-call (buffer 33 useful unless you are hacking the XZ decompressor. xz_dec_test
|
D | lzo.rst | 2 LZO stream format as understood by Linux's LZO decompressor 10 decompressor as implemented in the Linux kernel understands. The file subject
|
/Linux-v5.15/lib/xz/ |
D | Kconfig | 49 tristate "XZ decompressor tester"
|
/Linux-v5.15/Documentation/networking/ |
D | ppp_generic.rst | 374 SC_DECOMP_RUN CCP decompressor is running 375 SC_DC_ERROR CCP decompressor detected non-fatal error 376 SC_DC_FERROR CCP decompressor detected fatal error 412 decompressor. The lower 16 bits of the int pointed to by the 415 connection-ID for the decompressor, otherwise the decompressor's
|
/Linux-v5.15/arch/arm/boot/dts/ |
D | imx1.dtsi | 15 * The decompressor and also some bootloaders rely on a
|
D | imx31.dtsi | 10 * The decompressor and also some bootloaders rely on a
|