Searched defs:inflate_state (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Modules/zlib/ |
D | inflate.h | 82 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/rust/crates/libz-sys/src/zlib/ |
D | inflate.h | 82 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/angle/third_party/zlib/ |
D | inflate.h | 82 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/zlib/ |
D | inflate.h | 82 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/libwebsockets/win32port/zlib/ |
D | inflate.h | 81 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/rust/crates/libz-sys/src/zlib-ng/ |
D | inflate.h | 85 struct inflate_state { struct 87 inflate_mode mode; /* current inflate mode */ 88 int last; /* true if processing last block */ 89 int wrap; /* bit 0 true for zlib, bit 1 true for gzip, 91 int havedict; /* true if dictionary provided */ 92 int flags; /* gzip header method and flags, 0 if zlib, or 94 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ 95 unsigned long check; /* protected copy of check value */ 96 unsigned long total; /* protected copy of output count */ 99 unsigned wbits; /* log base 2 of requested window size */ [all …]
|
/external/rust/crates/libz-sys/src/zlib/contrib/infback9/ |
D | inflate9.h | 35 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 */
|
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.c | 404 } inflate_state; typedef
|