Searched refs:deflate (Results 1 - 8 of 8) sorted by relevance
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | Makefile | 51 AR_OBJS = compress deflate gzio infblock infcodes inffast inflate inftrees infutil trees uncompr zadler32 zcrc32 zutil
|
H A D | Make_vms.com | 36 $ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" - 37 deflate.c deflate.h zutil.h zlib.h zconf.h 53 trees.c deflate.h zutil.h zlib.h zconf.h
|
H A D | compress.c | 47 err = deflate(&stream, Z_FINISH);
|
H A D | example.c | 161 * Test deflate() with small buffers 183 err = deflate(&c_stream, Z_NO_FLUSH); 184 CHECK_ERR(err, "deflate"); 189 err = deflate(&c_stream, Z_FINISH); 191 CHECK_ERR(err, "deflate"); 240 * Test deflate() with large buffers and dynamic change of compression level 264 err = deflate(&c_stream, Z_NO_FLUSH); 265 CHECK_ERR(err, "deflate"); 267 fprintf(stderr, "deflate not greedy\n"); 275 err = deflate( [all...] |
H A D | zconf.h | 17 # define deflate z_deflate macro 118 /* The memory requirements for deflate are (in bytes):
|
H A D | zlib.h | 28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 130 /* Allowed flush values; see deflate() below for details */ 162 /* The deflate compression method (the only one supported in this version) */ 197 perform any compression: this will be done by deflate(). 201 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); 203 deflate compresses as much data as possible, and stops when the input 208 The detailed semantics are as follows. deflate performs one or both of the 214 processing will resume at this point for the next call of deflate(). 222 Before the call of deflate(), the application should ensure that at least 227 (avail_out == 0), or after each call of deflate() [all...] |
H A D | gzio.c | 508 s->z_err = deflate(&(s->stream), Z_NO_FLUSH); 597 flush is as in the deflate() function. 623 s->z_err = deflate(&(s->stream), flush); 628 /* deflate has finished flushing only when it hasn't used up
|
H A D | deflate.c | 0 /* deflate.c -- compress data using the deflation algorithm 51 #include "deflate.h" 54 " deflate 1.1.4 Copyright 1995-2002 Jean-loup Gailly "; 68 finish_started, /* finish started, need only more output at next deflate */ 109 * See deflate.c for comments about the MIN_MATCH+1. 139 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 348 s->noheader = 0; /* was set to -1 by deflate(..., Z_FINISH); */ 383 err = deflate(strm, Z_PARTIAL_FLUSH); 410 * Flush as much pending output as possible. All deflate() output goes 435 int ZEXPORT deflate (str function [all...] |
Completed in 20 milliseconds