Lines Matching defs:out_stream
252 z_stream out_stream;
259 out_stream.next_out = outbuf;
260 out_stream.avail_out = outbuf_length;
261 out_stream.next_in = cursor;
262 out_stream.avail_in = remaining;
263 out_stream.zalloc = lto_zalloc;
264 out_stream.zfree = lto_zfree;
265 out_stream.opaque = Z_NULL;
267 status = deflateInit (&out_stream, lto_normalized_zlib_level ());
275 status = deflate (&out_stream, Z_FINISH);
279 in_bytes = remaining - out_stream.avail_in;
280 out_bytes = outbuf_length - out_stream.avail_out;
288 out_stream.next_out = outbuf;
289 out_stream.avail_out = outbuf_length;
290 out_stream.next_in = cursor;
291 out_stream.avail_in = remaining;
295 status = deflateEnd (&out_stream);