HomeSort by relevance Sort by last modified time
    Searched defs:compress (Results 1 - 24 of 24) sorted by null

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/
compress.pm 1 package DBM_Filter::compress ;
11 eval { require Compress::Zlib; Compress::Zlib->import() };
13 croak "Compress::Zlib module not found.\n"
19 sub Store { $_ = compress($_) }
26 =head1 DBM_Filter::compress
34 $db->Filter_Push('compress');
38 This DBM filter will compress all data before it is written to the database
41 A fatal error will be thrown if the Compress::Zlib module is not
46 L<DBM_Filter>, L<perldbmfilter>, L<Compress::Zlib
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/comp/
comp.h 19 int (*compress)(COMP_CTX *ctx, member in struct:comp_method_st
c_zlib.c 122 #define compress stub_compress macro
225 fprintf(stderr,"compress(%4d)->%4d %s\n",
272 i=compress(&(out[1]),&l,in,(unsigned long)ilen);
288 fprintf(stderr,"compress(%4d)->%4d %s\n",
381 "compress");
  /onnv/onnv-gate/usr/src/cmd/boot/scripts/
root_archive.ksh 674 compress() function
761 # always compress if fiocompress exists
764 COMPRESS=true
785 if [ "$COMPRESS" = true ] ; then
809 if [ "$COMPRESS" = true ] ; then
810 compress . $MNT
850 COMPRESS=
860 c) COMPRESS=true
  /onnv/onnv-gate/usr/src/cmd/boot/fiocompress/
fiocompress.c 27 * fiocompress - a utility to compress files with a filesystem.
65 int compress = 0; local
81 compress = 1;
84 if (compress) {
  /onnv/onnv-gate/usr/src/uts/common/os/
compress.c 115 * two calls to compress() may produce different output. This is a
129 compress(void *s_start, void *d_start, size_t s_len) function
  /onnv/onnv-gate/usr/src/cmd/sgs/mcs/common/
utils.c 40 static char *compress(char *, size_t *);
402 buf = compress(buf, &size);
408 compress(char *str, size_t *size) function
  /onnv/onnv-gate/usr/src/uts/common/zmod/
zconf.h 90 #define compress zz_compress macro
  /onnv/onnv-gate/usr/src/cmd/sh/
service.c 639 static comp_t compress(clock_t);
674 sabuf.ac_utime = compress(buffer.tms_utime + buffer.tms_cutime);
675 sabuf.ac_stime = compress(buffer.tms_stime + buffer.tms_cstime);
676 sabuf.ac_etime = compress(after - before);
692 compress(clock_t t) function
  /onnv/onnv-gate/usr/src/uts/common/net/
ppp-comp.h 47 #define DO_BSD_COMPRESS 1 /* by default, include BSD-Compress */
71 /* Compress a packet */
72 int (*compress) __P((void *state, PACKETPTR *mret, member in struct:compressor
139 * Definitions for BSD-Compress.
141 #define CI_BSD_COMPRESS 21 /* config. option for BSD-Compress */
144 /* Macros for handling the 3rd byte of the BSD-Compress config option. */
  /onnv/onnv-gate/usr/src/lib/libinetutil/common/
ofmt.c 323 uint_t compress; local
364 compress = MIN(os->os_overflow, width - valwidth);
365 os->os_overflow -= compress;
366 width -= compress;
  /onnv/onnv-gate/usr/src/tools/cscope-fast/
main.c 69 BOOL compress = YES; /* compress the characters in the crossref */ variable
243 compress = YES;
258 compress = NO;
651 compress = NO;
807 " do not compress the data.\n");
885 if (compress == YES) {
1020 if (oldcompress != compress ||
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/ppp/spppcomp/
zlib.h 116 #define compress z_compress macro
549 * - Compress more input starting at next_in and update next_in and
773 * tuned to compress them better. The effect of Z_FILTERED is to force
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
dmu.c 882 * A block of zeros may compress to a hole, but the
1124 dmu_object_set_compress(objset_t *os, uint64_t object, uint8_t compress,
1131 ASSERT(compress < ZIO_COMPRESS_FUNCTIONS);
1132 dn->dn_compress = compress;
1145 enum zio_compress compress = os->os_compress; local
1177 compress = zfs_mdcomp_disable ? ZIO_COMPRESS_EMPTY :
1180 compress = zio_compress_select(dn->dn_compress, compress);
1202 compress = ZIO_COMPRESS_OFF;
1207 zp->zp_compress = compress;
    [all...]
zvol.c 1619 uint64_t checksum, compress, refresrv, vbs; local
1736 uint64_t checksum, compress, refresrv, vbs; local
    [all...]
spa_misc.c 1125 char *compress = zio_compress_table[BP_GET_COMPRESS(bp)].ci_name; local
1127 SPRINTF_BLKPTR(snprintf, ' ', buf, bp, type, checksum, compress);
    [all...]
zio.c 889 enum zio_compress compress = zp->zp_compress; local
947 compress = ZIO_COMPRESS_OFF;
954 if (compress != ZIO_COMPRESS_OFF) {
956 psize = zio_compress_data(compress, zio->io_data, cbuf, lsize);
958 compress = ZIO_COMPRESS_OFF;
991 BP_SET_COMPRESS(bp, compress);
    [all...]
spa.c 387 uint64_t compress; local
404 &compress, NULL)) == 0 &&
405 !BOOTFS_COMPRESS_VALID(compress)) {
    [all...]
  /onnv/onnv-gate/usr/src/cmd/compress/
compress.c 19 * Compress - data compression program
32 * SACREDMEM is the amount of physical memory saved for others; compress
114 * compress.c - File compression ala IEEE Computer, June 1984.
117 "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
149 * To save much memory, we overlay the table used by compress() with those
230 static void compress(void);
266 /* For compress () */
290 * Usage: compress [-dfvc/] [-b bits] [file ...]
391 * -C = > generate output compatible with compress 2.0.
514 gettext("compress: only one file may be compressed
968 compress() function
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
path.c 1325 static int compress(time_t);
1371 sabuf.ac_utime = compress(buffer.tms_utime + buffer.tms_cutime);
1372 sabuf.ac_stime = compress(buffer.tms_stime + buffer.tms_cstime);
1373 sabuf.ac_etime = compress( (time_t)(after-before));
1384 static int compress(register time_t t) function
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/zfs/
zfs.c 356 char type[80], checksum[80], compress[80]; local
376 enum_lookup(compress, sizeof (compress), compress_enum,
379 SPRINTF_BLKPTR(mdb_snprintf, '\n', buf, bp, type, checksum, compress);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/zdb/
zdb.c 576 double rL, rP, rD, D, dedup, compress, copies; local
587 compress = rL / rP;
590 (void) printf("dedup = %.2f, compress = %.2f, copies = %.2f, "
591 "dedup * compress / copies = %.2f\n\n",
592 dedup, compress, copies, dedup * compress / copies);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsqlite/tool/
lemon.c 1326 static int compress = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/ssl/
ssl.h 916 COMP_CTX *compress; \/* compression *\/ member in struct:ssl_st
918 char *compress; member in struct:ssl_st
    [all...]

Completed in 6299 milliseconds