Searched refs:compression (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lrzip.c47 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; member in struct:write_lrzip
91 "Using external lrzip program for lrzip compression");
101 if (strcmp(key, "compression") == 0) {
105 data->compression = bzip2;
107 data->compression = gzip;
109 data->compression = lzo;
111 data->compression = none;
113 data->compression = zpaq;
117 } else if (strcmp(key, "compression-level") == 0) {
140 /* Specify compression typ
[all...]
H A Darchive_read_support_format_zip.c93 unsigned char compression; member in struct:zip_entry
99 * when compression is 99. */
108 /* Actual compression method. */
109 unsigned char compression; member in struct:zip_entry::__anon15
134 /* Value used in compression method. */
405 {0, "uncompressed"}, /* The file is stored (no compression) */
407 {2, "reduced-1"}, /* The file is Reduced with compression factor 1 */
408 {3, "reduced-2"}, /* The file is Reduced with compression factor 2 */
409 {4, "reduced-3"}, /* The file is Reduced with compression factor 3 */
410 {5, "reduced-4"}, /* The file is Reduced with compression facto
434 compression_name(const int compression) argument
[all...]
H A Darchive_write_set_format_xar.c174 enum enctype compression; member in struct:heap_data
384 /* Set default compression type, level, and number of threads. */
429 if (strcmp(key, "compression") == 0) {
459 "Unknown compression name: `%s'",
466 "`%s' compression not supported "
473 if (strcmp(key, "compression-level") == 0) {
644 file->data.compression = xar->opt_compression;
694 if (xar->cur_file->data.compression == NONE) {
770 if (xar->cur_file->data.compression == NONE) {
994 switch (heap->compression) {
[all...]
H A Darchive_write_set_format_zip.c73 enum compression { enum
97 /* Value used in compression method. */
132 enum compression entry_compression;
159 enum compression requested_compression;
259 if (strcmp(key, "compression") == 0) {
261 * Set compression to use on all future entries.
266 "%s: compression option needs a compression name",
274 "deflate compression not supported");
281 } else if (strcmp(key, "compression
[all...]
H A Darchive_write_set_format_7zip.c312 /* Set default compression type and its level. */
346 if (strcmp(key, "compression") == 0) {
389 "Unknown compression name: `%s'",
396 "`%s' compression not supported "
403 if (strcmp(key, "compression-level") == 0) {
476 * Init compression.
754 * the compression type for encoding the header.
1617 "%s compression not supported on this platform", name);
1705 "Internal error initializing compression library");
1747 "GZip compression faile
2247 _7z_compression_init_encoder(struct archive_write *a, unsigned compression, int compression_level) argument
[all...]
/freebsd-10-stable/contrib/libarchive/tar/
H A Dbsdtar.c159 char compression, compression2; local
176 compression = compression2 = '\0';
377 if (compression != '\0')
380 compression);
381 compression = opt;
429 if (compression != '\0')
432 compression);
433 compression = opt;
437 if (compression != '\0')
440 compression);
[all...]
H A Dread.c128 int compression; local
139 compression = 0;
141 compression = (int)((uncomp - comp) * 100 / uncomp);
143 "In: %s bytes, compression %d%%;",
144 tar_i64toa(comp), compression);
H A Dwrite.c233 lafe_errc(1, 0, "Unsupported compression option --%s",
1008 int compression; local
1017 compression = 0;
1019 compression = (int)((uncomp - comp) * 100 / uncomp);
1021 " Out: %s bytes, compression %d%%\n",
1022 tar_i64toa(comp), compression);
/freebsd-10-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_truncated_filter.c36 test_truncation(const char *compression, argument
69 compression);
84 sprintf(path, "%s%d", compression, i);
119 compression);
123 sprintf(path, "%s%d", compression, i);
127 compression);
H A Dtest_read_format_tar.c428 int compression, int format)
442 assertEqualInt(archive_filter_code(a, 0), compression);
426 verify(unsigned char *d, size_t s, void (*f)(struct archive_entry *), int compression, int format) argument
/freebsd-10-stable/usr.sbin/fifolog/lib/
H A Dfifolog_write.h45 unsigned compression; member in struct:fifolog_writer
69 const char *fifolog_write_open(struct fifolog_writer *f, const char *fn, unsigned writerate, unsigned syncrate, unsigned compression);
H A Dfifolog_write_poll.c54 [FIFOLOG_PT_BYTES_PRE] = "Bytes before compression",
55 [FIFOLOG_PT_BYTES_POST] = "Bytes after compression",
119 unsigned writerate, unsigned syncrate, unsigned compression)
128 /* Check for legal compression value */
129 if (compression > Z_BEST_COMPRESSION)
130 return ("Illegal compression value");
134 f->compression = compression;
164 i = deflateInit(f->ff->zs, (int)f->compression);
249 * Run the compression engin
118 fifolog_write_open(struct fifolog_writer *f, const char *fn, unsigned writerate, unsigned syncrate, unsigned compression) argument
[all...]
/freebsd-10-stable/sbin/hastd/
H A Dhast_compression.c207 int compression; local
211 compression = res->hr_compression;
213 switch (compression) {
220 /* Try 'hole' compression first. */
223 compression = HAST_COMPRESSION_HOLE;
228 PJDLOG_ABORT("Invalid compression: %d.", res->hr_compression);
235 nv_add_string(nv, compression_name(compression), "compression");
258 algo = nv_get_string(nv, "compression");
260 return (0); /* No compression
[all...]
H A Dtoken.l60 compression { DP; return COMPRESSION; }
/freebsd-10-stable/crypto/openssh/
H A Dreadconf.h57 int compression; /* Compress packets in both directions. */ member in struct:__anon510
H A Dservconf.h131 int compression; /* If true, compression is allowed */ member in struct:__anon32
H A Dservconf.c130 options->compression = -1;
310 if (options->compression == -1)
311 options->compression = COMP_DELAYED;
397 if (use_privsep && options->compression == 1) {
399 "separation and compression");
401 options->compression = 0;
536 { "compression", sCompression, SSHCFG_GLOBAL },
1335 intptr = &options->compression;
2339 dump_cfg_fmtint(sCompression, o->compression);
H A Dreadconf.c247 { "compression", oCompression },
1010 intptr = &options->compression;
1828 options->compression = -1;
1979 if (options->compression == -1)
1980 options->compression = 0;
2548 dump_cfg_fmtint(oCompression, o->compression);
H A Dmonitor.c481 if (options.compression) {
1886 if (options.compression) {
1951 if (options.compression) {
H A Dsshd.c2686 if (options.compression == COMP_NONE) {
2689 } else if (options.compression == COMP_DELAYED) {
H A Dssh.c906 options.compression = 1;
1714 /* Enable compression if requested. */
1715 if (options.compression) {
1716 debug("Requesting compression at level %d.",
1733 logit("Warning: Remote host refused compression.");
1736 "compression response.");
/freebsd-10-stable/share/mk/
H A Dbsd.info.mk73 MAKEINFOFLAGS+= --no-split # simplify some things, e.g., compression
/freebsd-10-stable/sys/dev/ips/
H A Dipsreg.h379 u_int8_t compression; member in struct:__anon8896
/freebsd-10-stable/sys/cam/
H A DREADME.quirks85 o SA_QUIRK_NOCOMP - Can't deal with compression at all
/freebsd-10-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql91 /* Enumerated values specifying type of compression. The only value
92 supported so far is NULL, meaning that no compression has been applied
94 compression INTEGER,

Completed in 367 milliseconds

12