Lines Matching refs:outgoing_stream
28 z_stream outgoing_stream;
43 deflateEnd(&outgoing_stream);
48 deflateInit(&outgoing_stream, level);
65 (unsigned long long)outgoing_stream.total_in,
66 (unsigned long long)outgoing_stream.total_out,
67 outgoing_stream.total_in == 0 ? 0.0 :
68 (double) outgoing_stream.total_out / outgoing_stream.total_in);
77 deflateEnd(&outgoing_stream);
100 outgoing_stream.next_in = buffer_ptr(input_buffer);
101 outgoing_stream.avail_in = buffer_len(input_buffer);
106 outgoing_stream.next_out = buf;
107 outgoing_stream.avail_out = sizeof(buf);
110 status = deflate(&outgoing_stream, Z_PARTIAL_FLUSH);
115 sizeof(buf) - outgoing_stream.avail_out);
122 } while (outgoing_stream.avail_out == 0);