Lines Matching defs:z_stream_s
84 typedef struct z_stream_s { struct
85 z_const Bytef *next_in; /* next input byte */
86 uInt avail_in; /* number of bytes available at next_in */
87 uLong total_in; /* total number of input bytes read so far */
89 Bytef *next_out; /* next output byte should be put there */
90 uInt avail_out; /* remaining free space at next_out */
91 uLong total_out; /* total number of bytes output so far */
93 z_const char *msg; /* last error message, NULL if no error */
94 struct internal_state FAR *state; /* not visible by applications */
96 int data_type; /* best guess about the data type: binary or text */
97 uLong adler; /* adler32 value of the uncompressed data */
98 uLong reserved; /* reserved for future use */