Searched defs:inflate_state (Results 1 – 2 of 2) sorted by relevance
72 struct inflate_state { struct73 inflate_mode mode; /* current inflate mode */74 int last; /* true if processing last block */75 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */76 int havedict; /* true if dictionary provided */77 int flags; /* gzip header method and flags (0 if zlib) */78 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */79 unsigned long check; /* protected copy of check value */80 unsigned long total; /* protected copy of output count */83 unsigned wbits; /* log base 2 of requested window size */[all …]
19 struct inflate_state inflate_state; member