Home
last modified time | relevance | path

Searched refs:decompressor (Results 1 – 25 of 43) sorted by relevance

12

/Linux-v4.19/fs/squashfs/
Ddecompressor_multi_percpu.c41 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create()
55 msblk->decompressor->free(stream->stream); in squashfs_decompressor_create()
71 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy()
83 int res = msblk->decompressor->decompress(msblk, stream->stream, bh, b, in squashfs_decompress()
89 msblk->decompressor->name); in squashfs_decompress()
Ddecompressor_single.c39 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create()
59 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy()
71 res = msblk->decompressor->decompress(msblk, stream->stream, bh, b, in squashfs_decompress()
77 msblk->decompressor->name); in squashfs_decompress()
Ddecompressor.c78 static const struct squashfs_decompressor *decompressor[] = { variable
93 for (i = 0; decompressor[i]->id; i++) in squashfs_lookup_decompressor()
94 if (id == decompressor[i]->id) in squashfs_lookup_decompressor()
97 return decompressor[i]; in squashfs_lookup_decompressor()
Ddecompressor_multi.c90 decomp_strm->stream = msblk->decompressor->init(msblk, in squashfs_decompressor_create()
118 msblk->decompressor->free(decomp_strm->stream); in squashfs_decompressor_destroy()
158 decomp_strm->stream = msblk->decompressor->init(msblk, in get_decomp_stream()
191 res = msblk->decompressor->decompress(msblk, decomp_stream->stream, in squashfs_decompress()
196 msblk->decompressor->name); in squashfs_decompress()
Ddecompressor.h41 return msblk->decompressor->comp_opts ? in squashfs_comp_opts()
42 msblk->decompressor->comp_opts(msblk, buff, length) : NULL; in squashfs_comp_opts()
Dsuper.c55 const struct squashfs_decompressor *decompressor; in supported_squashfs_filesystem() local
68 decompressor = squashfs_lookup_decompressor(id); in supported_squashfs_filesystem()
69 if (!decompressor->supported) { in supported_squashfs_filesystem()
71 "supported\n", decompressor->name); in supported_squashfs_filesystem()
75 return decompressor; in supported_squashfs_filesystem()
132 msblk->decompressor = supported_squashfs_filesystem( in squashfs_fill_super()
136 if (msblk->decompressor == NULL) in squashfs_fill_super()
DKconfig76 By default Squashfs uses a single decompressor but it gives
78 machines due to waiting on decompressor availability.
83 This decompressor implementation uses up to two parallel
90 By default Squashfs uses a single decompressor but it gives
92 machines due to waiting on decompressor availability.
94 This decompressor implementation uses a maximum of one
95 decompressor per core. It uses percpu variables to ensure
Dsquashfs_fs_sb.h57 const struct squashfs_decompressor *decompressor; member
DMakefile8 squashfs-y += namei.o super.o symlink.o decompressor.o
/Linux-v4.19/init/
Ddo_mounts_rd.c58 identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor) in identify_ramdisk_image() argument
86 *decompressor = decompress_method(buf, size, &compress_name); in identify_ramdisk_image()
90 if (!*decompressor) in identify_ramdisk_image()
184 decompress_fn decompressor = NULL; in rd_load_image() local
197 nblocks = identify_ramdisk_image(in_fd, rd_image_start, &decompressor); in rd_load_image()
202 if (crd_load(in_fd, out_fd, decompressor) == 0) in rd_load_image()
/Linux-v4.19/lib/
Ddecompress.c44 decompress_fn decompressor; member
78 return cf->decompressor; in decompress_method()
/Linux-v4.19/Documentation/arm/
DPorting17 Start address of decompressor. There's no point in talking about
19 the time when you call the decompressor code. You normally call
25 Start address of zero-initialised work area for the decompressor.
26 This must be pointing at RAM. The decompressor will zero initialise
90 when using the decompressor.
DBooting113 the kernel decompressor nor initrd 'bootp' program will overwrite
128 placed in a region of memory where the kernel decompressor will not
141 a region of memory where the kernel decompressor will not overwrite it
/Linux-v4.19/Documentation/
Dxz.txt14 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
Dlzo.txt2 LZO stream format as understood by Linux's LZO decompressor
10 decompressor as implemented in the Linux kernel understands. The file subject
/Linux-v4.19/lib/xz/
DKconfig48 tristate "XZ decompressor tester"
/Linux-v4.19/include/linux/
Disdn_ppp.h187 struct isdn_ppp_compressor *compressor,*decompressor; member
/Linux-v4.19/drivers/isdn/i4l/
Disdn_ppp.c298 is->link_decompressor = is->decompressor = NULL; in isdn_ppp_open()
406 is->decompressor->free(is->decomp_stat); in isdn_ppp_release()
408 is->decompressor = is->link_decompressor = NULL; in isdn_ppp_release()
2549 ipc = master->decompressor; in isdn_ppp_decompress()
2727 if (!mis->decompressor) in isdn_ppp_receive_ccp()
2731 if (!is->decompressor) in isdn_ppp_receive_ccp()
2746 if (mis->decompressor && mis->decomp_stat) in isdn_ppp_receive_ccp()
2747 mis->decompressor-> in isdn_ppp_receive_ccp()
3035 is->decompressor->free(is->decomp_stat); in isdn_ppp_set_compressor()
3037 is->decompressor = ipc; in isdn_ppp_set_compressor()
/Linux-v4.19/Documentation/networking/
Dppp_generic.txt349 SC_DECOMP_RUN CCP decompressor is running
350 SC_DC_ERROR CCP decompressor detected non-fatal error
351 SC_DC_FERROR CCP decompressor detected fatal error
384 decompressor. The lower 16 bits of the int pointed to by the
387 connection-ID for the decompressor, otherwise the decompressor's
/Linux-v4.19/arch/arm/boot/dts/
Dimx1.dtsi15 * The decompressor and also some bootloaders rely on a
Dimx31.dtsi10 * The decompressor and also some bootloaders rely on a
Dimx35.dtsi13 * The decompressor and also some bootloaders rely on a
Dimx23.dtsi13 * The decompressor and also some bootloaders rely on a
Dimx50.dtsi22 * The decompressor and also some bootloaders rely on a
/Linux-v4.19/arch/arm/mach-pxa/
DKconfig486 bool "Detect machine ID at run-time in the decompressor"
489 Say Y here if you want the zImage decompressor to detect

12