Home
last modified time | relevance | path

Searched defs:inflate_state (Results 1 – 5 of 5) sorted by relevance

/external/zlib/src/
Dinflate.h82 struct inflate_state { struct
83 z_streamp strm; /* pointer back to this zlib stream */
84 inflate_mode mode; /* current inflate mode */
85 int last; /* true if processing last block */
86 int wrap; /* bit 0 true for zlib, bit 1 true for gzip,
88 int havedict; /* true if dictionary provided */
89 int flags; /* gzip header method and flags (0 if zlib) */
90 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */
91 unsigned long check; /* protected copy of check value */
92 unsigned long total; /* protected copy of output count */
[all …]
/external/python/cpython3/Modules/zlib/
Dinflate.h82 struct inflate_state { struct
83 z_streamp strm; /* pointer back to this zlib stream */
84 inflate_mode mode; /* current inflate mode */
85 int last; /* true if processing last block */
86 int wrap; /* bit 0 true for zlib, bit 1 true for gzip,
88 int havedict; /* true if dictionary provided */
89 int flags; /* gzip header method and flags (0 if zlib) */
90 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */
91 unsigned long check; /* protected copy of check value */
92 unsigned long total; /* protected copy of output count */
[all …]
/external/syslinux/com32/lib/zlib/
Dinflate.h81 struct inflate_state { struct
82 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 …]
/external/python/cpython2/Modules/zlib/
Dinflate.h81 struct inflate_state { struct
82 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 …]
/external/zlib/src/contrib/infback9/
Dinflate9.h35 struct inflate_state { struct
37 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 */