Searched defs:inflate_state (Results 1 – 5 of 5) sorted by relevance
81 struct inflate_state { struct82 inflate_mode mode; /* current inflate mode */83 int last; /* true if processing last block */84 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */85 int havedict; /* true if dictionary provided */86 int flags; /* gzip header method and flags (0 if zlib) */87 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */88 unsigned long check; /* protected copy of check value */89 unsigned long total; /* protected copy of output count */90 gz_headerp head; /* where to save gzip header information */[all …]
35 struct inflate_state { struct37 unsigned char FAR *window; /* allocated sliding window, if needed */39 unsigned ncode; /* number of code length code lengths */40 unsigned nlen; /* number of length code lengths */41 unsigned ndist; /* number of distance code lengths */42 unsigned have; /* number of code lengths in lens[] */43 code FAR *next; /* next available space in codes[] */44 unsigned short lens[320]; /* temporary storage for code lengths */45 unsigned short work[288]; /* work area for code table building */46 code codes[ENOUGH]; /* space for code tables */