Searched defs:deflate_state (Results 1 – 5 of 5) sorted by relevance
49 struct deflate_state { struct50 int seqno;51 int w_size;52 int unit;53 int hdrlen;54 int mru;55 int debug;56 z_stream strm;57 struct compstat stats;
216 typedef struct deflate_state { struct217 z_stream *strm; /* pointer back to this zlib stream */218 int status; /* as the name implies */219 Bytef *pending_buf; /* output still pending */220 Bytef *pending_out; /* next pending byte to output to the stream */221 int pending; /* nb of bytes in the pending buffer */222 uLong adler; /* adler32 of uncompressed data */223 int noheader; /* suppress zlib header and adler32 */224 Byte data_type; /* UNKNOWN, BINARY or ASCII */225 Byte method; /* STORED (for zip only) or DEFLATED */[all …]
59 struct deflate_state { struct60 int seqno;61 int w_size;62 int unit;63 int hdrlen;64 int mru;65 int flags;66 z_stream strm;67 struct compstat stats;
363 typedef struct deflate_state { struct364 z_streamp strm; /* pointer back to this zlib stream */365 int status; /* as the name implies */366 Bytef *pending_buf; /* output still pending */367 ulg pending_buf_size; /* size of pending_buf */368 Bytef *pending_out; /* next pending byte to output to the stream */369 int pending; /* nb of bytes in the pending buffer */370 int noheader; /* suppress zlib header and adler32 */371 Byte data_type; /* UNKNOWN, BINARY or ASCII */372 Byte method; /* STORED (for zip only) or DEFLATED */[all …]
263 } FAR deflate_state; typedef