Home
last modified time | relevance | path

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

/external/freetype/src/gzip/
Dzlib.h68 typedef struct z_stream_s { struct
69 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 …]
/external/libwebsockets/win32port/zlib/
Dzlib.h85 typedef struct z_stream_s { struct
86 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 …]
/external/rust/crates/libz-sys/src/zlib-ng/
Dzlib.h94 typedef struct z_stream_s { struct
95 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 …]
/external/python/cpython2/Modules/zlib/
Dzlib.h86 typedef struct z_stream_s { struct
87 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 …]
/external/angle/third_party/zlib/
Dzlib.h86 typedef struct z_stream_s { struct
87 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 …]
/external/zlib/
Dzlib.h129 typedef struct z_stream_s { struct
130 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 …]
/external/rust/crates/libz-sys/src/zlib/
Dzlib.h86 typedef struct z_stream_s { struct
87 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 …]
/external/perfetto/src/trace_processor/importers/gzip/
Dgzip_utils.cc26 struct z_stream_s {}; struct