HomeSort by relevance Sort by last modified time
    Searched refs:comp_opts (Results 1 - 7 of 7) sorted by null

  /external/squashfs-tools/squashfs-tools/
lz4_wrapper.c 72 * Currently LZ4 always returns a comp_opts structure, with
79 static struct lz4_comp_opts comp_opts; local
81 comp_opts.version = LZ4_LEGACY;
82 comp_opts.flags = hc ? LZ4_HC : 0;
83 SQUASHFS_INSWAP_COMP_OPTS(&comp_opts);
85 *size = sizeof(comp_opts);
86 return &comp_opts;
112 struct lz4_comp_opts *comp_opts = buffer; local
114 /* we expect a comp_opts structure to be present */
115 if(size < sizeof(*comp_opts))
164 struct lz4_comp_opts *comp_opts = buffer; local
189 struct lz4_comp_opts *comp_opts = buffer; local
    [all...]
lzo_wrapper.c 167 static struct lzo_comp_opts comp_opts; local
179 comp_opts.algorithm = algorithm;
180 comp_opts.compression_level = algorithm == SQUASHFS_LZO1X_999 ?
183 SQUASHFS_INSWAP_COMP_OPTS(&comp_opts);
185 *size = sizeof(comp_opts);
186 return &comp_opts;
212 struct lzo_comp_opts *comp_opts = buffer; local
221 /* we expect a comp_opts structure of sufficient size to be present */
222 if(size < sizeof(*comp_opts))
225 SQUASHFS_INSWAP_COMP_OPTS(comp_opts);
268 struct lzo_comp_opts *comp_opts = buffer; local
    [all...]
gzip_wrapper.c 174 static struct gzip_comp_opts comp_opts; local
193 comp_opts.compression_level = compression_level;
194 comp_opts.window_size = window_size;
195 comp_opts.strategy = strategies;
197 SQUASHFS_INSWAP_COMP_OPTS(&comp_opts);
199 *size = sizeof(comp_opts);
200 return &comp_opts;
226 struct gzip_comp_opts *comp_opts = buffer; local
237 /* we expect a comp_opts structure of sufficient size to be present */
238 if(size < sizeof(*comp_opts))
281 struct gzip_comp_opts *comp_opts = buffer; local
    [all...]
xz_wrapper.c 228 static struct comp_opts comp_opts; local
247 comp_opts.dictionary_size = dictionary_size;
248 comp_opts.flags = flags;
250 SQUASHFS_INSWAP_COMP_OPTS(&comp_opts);
252 *size = sizeof(comp_opts);
253 return &comp_opts;
279 struct comp_opts *comp_opts = buffer; local
288 if(size != sizeof(struct comp_opts))
327 struct comp_opts *comp_opts = buffer; local
    [all...]
xz_wrapper.h 67 struct comp_opts { struct
mksquashfs.c 105 int comp_opts = FALSE; variable
    [all...]
  /external/iptables/extensions/
libxt_ipcomp.c 18 static const struct xt_option_entry comp_opts[] = { variable in typeref:struct:xt_option_entry
125 .x6_options = comp_opts,

Completed in 206 milliseconds