Home | History | Annotate | Download | only in zlib

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) */
48 LENGTH, /* i: waiting for 32-bit length (gzip) */
61 HEAD -> (gzip) or (zlib) or (raw)
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
84 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
86 int flags; /* gzip header method and flags (0 if zlib) */
90 gz_headerp head; /* where to save gzip header information */