Lines Matching full:gzip
14 /* define NO_GZIP when compiling if you want to disable gzip header and
16 the crc code when it is not needed. For shared libraries, gzip decoding
25 FLAGS, /* i: waiting for method and flags (gzip) */
26 TIME, /* i: waiting for modification time (gzip) */
27 OS, /* i: waiting for extra flags and operating system (gzip) */
28 EXLEN, /* i: waiting for extra length (gzip) */
29 EXTRA, /* i: waiting for extra bytes (gzip) */
30 NAME, /* i: waiting for end of file name (gzip) */
31 COMMENT, /* i: waiting for end of comment (gzip) */
32 HCRC, /* i: waiting for header crc (gzip) */
51 LENGTH, /* i: waiting for 32-bit length (gzip) */
64 HEAD -> (gzip) or (zlib) or (raw)
65 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
89 int wrap; /* bit 0 true for zlib, bit 1 true for gzip,
92 int flags; /* gzip header method and flags, 0 if zlib, or
97 PREFIX(gz_headerp) head; /* where to save gzip header information */