Lines Matching defs:z_stream_s
278 typedef struct z_stream_s { struct
279 Bytef *next_in; /* next input byte */
280 uInt avail_in; /* number of bytes available at next_in */
281 uLong total_in; /* total nb of input bytes read so far */
283 Bytef *next_out; /* next output byte should be put there */
284 uInt avail_out; /* remaining free space at next_out */
285 uLong total_out; /* total nb of bytes output so far */
287 const char *msg; /* last error message, NULL if no error */
288 struct internal_state FAR *state; /* not visible by applications */
290 alloc_func zalloc; /* used to allocate the internal state */
291 free_func zfree; /* used to free the internal state */
292 voidpf opaque; /* private data object passed to zalloc and zfree */
294 int data_type; /* best guess about the data type: ascii or binary */
295 uLong adler; /* adler32 value of the uncompressed data */
296 uLong reserved; /* reserved for future use */