Home
last modified time | relevance | path

Searched defs:z_stream_s (Results 1 – 1 of 1) sorted by relevance

/optee_os/core/lib/zlib/
H A Dzlib.h87 typedef struct z_stream_s { struct
88 z_const Bytef *next_in; /* next input byte */
89 uInt avail_in; /* number of bytes available at next_in */
90 uLong total_in; /* total number of input bytes read so far */
92 Bytef *next_out; /* next output byte will go here */
93 uInt avail_out; /* remaining free space at next_out */
94 uLong total_out; /* total number of bytes output so far */
96 z_const char *msg; /* last error message, NULL if no error */
97 struct internal_state FAR *state; /* not visible by applications */
99 alloc_func zalloc; /* used to allocate the internal state */
[all …]