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