Searched defs:z_stream_s (Results 1 – 8 of 8) sorted by relevance
68 typedef struct z_stream_s { struct69 Bytef *next_in; /* next input byte */70 uInt avail_in; /* number of bytes available at next_in */71 uLong total_in; /* total nb of input bytes read so far */73 Bytef *next_out; /* next output byte should be put there */74 uInt avail_out; /* remaining free space at next_out */75 uLong total_out; /* total nb of bytes output so far */77 char *msg; /* last error message, NULL if no error */78 struct internal_state FAR *state; /* not visible by applications */80 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 …]
94 typedef struct z_stream_s { struct95 z_const unsigned char *next_in; /* next input byte */96 uint32_t avail_in; /* number of bytes available at next_in */97 unsigned long total_in; /* total number of input bytes read so far */99 unsigned char *next_out; /* next output byte will go here */100 uint32_t avail_out; /* remaining free space at next_out */101 unsigned long total_out; /* total number of bytes output so far */103 z_const char *msg; /* last error message, NULL if no error */104 struct internal_state *state; /* not visible by applications */106 alloc_func zalloc; /* used to allocate the internal state */[all …]
86 typedef struct z_stream_s { struct87 z_const Bytef *next_in; /* next input byte */88 uInt avail_in; /* number of bytes available at next_in */89 uLong total_in; /* total number of input bytes read so far */91 Bytef *next_out; /* next output byte will go here */92 uInt avail_out; /* remaining free space at next_out */93 uLong total_out; /* total number of bytes output so far */95 z_const char *msg; /* last error message, NULL if no error */96 struct internal_state FAR *state; /* not visible by applications */98 alloc_func zalloc; /* used to allocate the internal state */[all …]
129 typedef struct z_stream_s { struct130 z_const Bytef *next_in; /* next input byte */131 uInt avail_in; /* number of bytes available at next_in */132 uLong total_in; /* total number of input bytes read so far */134 Bytef *next_out; /* next output byte will go here */135 uInt avail_out; /* remaining free space at next_out */136 uLong total_out; /* total number of bytes output so far */138 z_const char *msg; /* last error message, NULL if no error */139 struct internal_state FAR *state; /* not visible by applications */141 alloc_func zalloc; /* used to allocate the internal state */[all …]
26 struct z_stream_s {}; struct