Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching full:gzip

11 /* define NO_GZIP when compiling if you want to disable gzip header and
13 the crc code when it is not needed. For shared libraries, gzip decoding
22 FLAGS, /* i: waiting for method and flags (gzip) */
23 TIME, /* i: waiting for modification time (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
27 NAME, /* i: waiting for end of file name (gzip) */
28 COMMENT, /* i: waiting for end of comment (gzip) */
29 HCRC, /* i: waiting for header crc (gzip) */
46 LENGTH, /* i: waiting for 32-bit length (gzip) */
59 HEAD -> (gzip) or (zlib)
60 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
80 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
82 int flags; /* gzip header method and flags (0 if zlib) */
86 gz_headerp head; /* where to save gzip header information */