Searched refs:compressor (Results 1 - 25 of 41) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/src/router/squashfs-4.2/
H A Dcompressor.c20 * compressor.c
25 #include "compressor.h"
29 static struct compressor gzip_comp_ops = {
33 extern struct compressor gzip_comp_ops;
37 static struct compressor lzma_comp_ops = {
42 extern struct compressor lzma_comp_ops;
46 static struct compressor lzo_comp_ops = {
51 extern struct compressor lzo_comp_ops;
55 static struct compressor xz_comp_ops = {
59 extern struct compressor xz_comp_op
68 struct compressor *compressor[] = { variable in typeref:struct:compressor
[all...]
H A Dcompressor.h20 * compressor.h
23 struct compressor { struct
37 extern struct compressor *lookup_compressor(char *);
38 extern struct compressor *lookup_compressor_id(int);
42 static inline int compressor_init(struct compressor *comp, void **stream,
51 static inline int compressor_compress(struct compressor *comp, void *strm,
58 static inline int compressor_uncompress(struct compressor *comp, void *dest,
65 static inline int compressor_options(struct compressor *comp, char *argv[],
75 static inline int compressor_options_post(struct compressor *comp, int block_size)
83 static inline void *compressor_dump_options(struct compressor *com
[all...]
H A DMakefile110 MKSQUASHFS_OBJS = mksquashfs.o read_fs.o sort.o swap.o pseudo.o compressor.o
113 unsquash-4.o swap.o compressor.o
197 # At least one compressor must have been selected
200 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ or LZO!")
204 # COMP_DEFAULT must be a selected compressor
226 xattr.h pseudo.h compressor.h
228 read_fs.o: read_fs.c squashfs_fs.h read_fs.h squashfs_swap.h compressor.h \
237 compressor.o: compressor.c compressor
[all...]
H A Dgzip_wrapper.c26 #include "compressor.h"
82 * All other errors return failure, with the compressor
102 struct compressor gzip_comp_ops = {
H A Dlzma_wrapper.c28 #include "compressor.h"
52 * All other errors return failure, with the compressor
76 * compressor does not include the LZMA header space
102 struct compressor lzma_comp_ops = {
H A Dlzo_wrapper.c32 #include "compressor.h"
92 * All other errors return failure, with the compressor
112 struct compressor lzo_comp_ops = {
H A Dlzma_xz_wrapper.c29 #include "compressor.h"
91 * All other errors return failure, with the compressor
147 struct compressor lzma_comp_ops = {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/include/linux/
H A Dif_pppvar.h153 struct compressor *sc_xcomp; /* transmit compressor */
154 void *sc_xc_state; /* transmit compressor state */
155 struct compressor *sc_rcomp; /* receive decompressor */
H A Dppp-comp.h71 struct compressor { struct
74 /* Allocate space for a compressor (transmit side) */
77 /* Free space used by a compressor */
80 /* Initialize a compressor */
84 /* Reset a compressor */
301 extern int ppp_register_compressor(struct compressor *);
302 extern void ppp_unregister_compressor(struct compressor *);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/include/linux/
H A Dif_pppvar.h122 struct compressor *sc_xcomp; /* transmit compressor */
123 void *sc_xc_state; /* transmit compressor state */
124 struct compressor *sc_rcomp; /* receive decompressor */
H A Dppp-comp.h63 struct compressor { struct
66 /* Allocate space for a compressor (transmit side) */
69 /* Free space used by a compressor */
72 /* Initialize a compressor */
76 /* Reset a compressor */
199 extern int ppp_register_compressor(struct compressor *);
200 extern void ppp_unregister_compressor(struct compressor *);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dppp-comp.h63 struct compressor { struct
66 /* Allocate space for a compressor (transmit side) */
69 /* Free space used by a compressor */
72 /* Initialize a compressor */
76 /* Reset a compressor */
110 /* Used in locking compressor modules */
112 /* Extra skb space needed by the compressor algorithm */
210 extern int ppp_register_compressor(struct compressor *);
211 extern void ppp_unregister_compressor(struct compressor *);
H A Disdn_ppp.h91 * We use this same struct for the reset entry of the compressor to commu-
240 struct isdn_ppp_compressor *compressor,*decompressor; member in struct:ippp_struct
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppdump/
H A Dppp-comp.h57 struct compressor { struct
H A Dpppdump.c241 struct compressor *comp;
429 extern struct compressor ppp_bsd_compress, ppp_deflate;
431 struct compressor *compressors[] = {
448 struct compressor **comp;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppdump/
H A Dppp-comp.h49 struct compressor { struct
H A Dpppdump.c213 struct compressor *comp;
400 extern struct compressor ppp_bsd_compress, ppp_deflate;
402 struct compressor *compressors[] = {
418 struct compressor **comp;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/include/net/
H A Dppp-comp.h50 struct compressor { struct
53 /* Allocate space for a compressor (transmit side) */
55 /* Free space used by a compressor */
57 /* Initialize a compressor */
60 /* Reset a compressor */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dppp_deflate.c46 * State for a Deflate (de)compressor.
81 * z_comp_free - free the memory used by a compressor
82 * @arg: pointer to the private state for the compressor.
96 * z_comp_alloc - allocate space for a compressor.
106 * Returns the pointer to the private state for the compressor,
147 * z_comp_init - initialize a previously-allocated compressor.
148 * @arg: pointer to the private state for the compressor
157 * specified when the compressor was allocated. The compressor
184 * z_comp_reset - reset a previously-allocated compressor
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/i4l/
H A Disdn_ppp.c297 is->link_compressor = is->compressor = NULL;
389 is->compressor->free(is->comp_stat);
396 is->compressor = is->link_compressor = NULL;
2164 to the (de)compressor, but indeed is not covered by the current API to
2165 the (de)compressor. The API is a prototype version from PPP where only
2172 the framework and the (de)compressor. Bad enough, LZS is different
2173 (and any other compressor may be different, too). It has multiple
2182 the data portion changes, thus any (de)compressor who uses more than
2186 (de)compressor might.
2527 BUG_ON(!stat); // if we have a compressor, sta
2588 struct isdn_ppp_compressor *compressor; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/include/net/
H A Dppp-comp.h58 struct compressor { struct
61 /* Allocate space for a compressor (transmit side) */
63 /* Free space used by a compressor */
65 /* Initialize a compressor */
68 /* Reset a compressor */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/modules/
H A Dppp_comp.c136 struct compressor *xcomp;
138 struct compressor *rcomp;
170 extern struct compressor ppp_bsd_compress;
173 extern struct compressor ppp_deflate, ppp_deflate_draft;
176 struct compressor *ppp_compressors[] = {
246 /* thread for calling back to a compressor's memory allocator
330 struct compressor **comp;
384 * Initialize VJ compressor/decompressor
422 /* A previous call may have fetched memory for a compressor
451 /* sanity check for compressor option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/solaris/
H A Dppp_comp.c136 struct compressor *xcomp;
138 struct compressor *rcomp;
170 extern struct compressor ppp_bsd_compress;
173 extern struct compressor ppp_deflate, ppp_deflate_draft;
176 struct compressor *ppp_compressors[] = {
246 /* thread for calling back to a compressor's memory allocator
330 struct compressor **comp;
384 * Initialize VJ compressor/decompressor
422 /* A previous call may have fetched memory for a compressor
451 /* sanity check for compressor option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/modules/
H A Dppp_comp.c128 struct compressor *xcomp;
130 struct compressor *rcomp;
162 extern struct compressor ppp_bsd_compress;
165 extern struct compressor ppp_deflate, ppp_deflate_draft;
168 struct compressor *ppp_compressors[] = {
238 /* thread for calling back to a compressor's memory allocator
322 struct compressor **comp;
376 * Initialize VJ compressor/decompressor
414 /* A previous call may have fetched memory for a compressor
443 /* sanity check for compressor option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/solaris/
H A Dppp_comp.c128 struct compressor *xcomp;
130 struct compressor *rcomp;
162 extern struct compressor ppp_bsd_compress;
165 extern struct compressor ppp_deflate, ppp_deflate_draft;
168 struct compressor *ppp_compressors[] = {
238 /* thread for calling back to a compressor's memory allocator
322 struct compressor **comp;
376 * Initialize VJ compressor/decompressor
414 /* A previous call may have fetched memory for a compressor
443 /* sanity check for compressor option
[all...]

Completed in 138 milliseconds

12