HomeSort by: relevance | last modified time | path
    Searched defs:GZIP (Results 1 - 3 of 3) sorted by relevancy

  /src/common/dist/zlib/examples/
zran.c 9 1.2 14 Oct 2018 Handle gzip streams with multiple members
11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip
12 Permit crossing gzip member boundaries when extracting
129 #define GZIP 31
139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet)
158 // if it is neither zlib nor gzip. This could in theory result
164 strm.next_in[0] == 0x1f ? GZIP :
207 if (ret == Z_STREAM_END && mode == GZIP &&
209 // There is more input after the end of a gzip member. Reset the
210 // inflate state to read another gzip member. On success, this wil
    [all...]
  /src/common/dist/zlib/
gzguts.h 158 /* gzip modes, also provide a little integrity check on the passed structure */
165 #define LOOK 0 /* look for a gzip header */
167 #define GZIP 2 /* decompress a gzip stream */
169 /* internal gzip file state data structure */
177 int mode; /* see gzip modes above */
184 int direct; /* 0 if processing gzip, 1 if transparent */
187 z_off64_t start; /* where the gzip data started, for rewinding */
deflate.h 20 /* define NO_GZIP when compiling if you want to disable gzip header and
22 the crc code when it is not needed. For shared libraries, gzip encoding
25 # define GZIP
61 #ifdef GZIP
62 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */
64 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */
65 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */
66 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */
67 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */
113 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
    [all...]

Completed in 11 milliseconds