Searched defs:z_stream_s (Results 1 – 4 of 4) sorted by relevance
84 typedef struct z_stream_s { struct85 Byte *next_in; /* next input byte */86 uInt avail_in; /* number of bytes available at next_in */87 uLong total_in; /* total nb of input bytes read so far */89 Byte *next_out; /* next output byte should be put there */90 uInt avail_out; /* remaining free space at next_out */91 uLong total_out; /* total nb of bytes output so far */93 char *msg; /* last error message, NULL if no error */94 struct internal_state *state; /* not visible by applications */96 void *workspace; /* memory allocated for this stream */[all …]
82 typedef struct z_stream_s { struct83 Bytef *next_in; /* next input byte */84 uInt avail_in; /* number of bytes available at next_in */85 uLong total_in; /* total nb of input bytes read so far */87 Bytef *next_out; /* next output byte should be put there */88 uInt avail_out; /* remaining free space at next_out */89 uLong total_out; /* total nb of bytes output so far */91 char *msg; /* last error message, NULL if no error */92 struct internal_state FAR *state; /* not visible by applications */94 alloc_func zalloc; /* used to allocate the internal state */[all …]
85 typedef struct z_stream_s { struct86 Bytef *next_in; /* next input byte */87 uInt avail_in; /* number of bytes available at next_in */88 uLong total_in; /* total nb of input bytes read so far */90 Bytef *next_out; /* next output byte should be put there */91 uInt avail_out; /* remaining free space at next_out */92 uLong total_out; /* total nb of bytes output so far */94 char *msg; /* last error message, NULL if no error */95 struct internal_state FAR *state; /* not visible by applications */97 alloc_func zalloc; /* used to allocate the internal state */[all …]