Lines Matching refs:stream
63 z_stream stream; in gunzip() local
70 stream.next_in = (typeof(stream.next_in))*in_buf; in gunzip()
71 stream.avail_in = in_len; in gunzip()
72 stream.next_out = (typeof(stream.next_out))*out_buf; in gunzip()
73 stream.avail_out = out_len; in gunzip()
74 stream.zalloc = zcalloc; in gunzip()
75 stream.zfree = zfree; in gunzip()
76 stream.opaque = (voidpf)0; in gunzip()
78 zret = inflateInit(&stream); in gunzip()
84 zret = inflate(&stream, Z_NO_FLUSH); in gunzip()
88 if (stream.msg) in gunzip()
89 ERROR("%s\n", stream.msg); in gunzip()
94 VERBOSE("zlib: %lu byte input\n", stream.total_in); in gunzip()
95 VERBOSE("zlib: %lu byte output\n", stream.total_out); in gunzip()
97 *in_buf = (uintptr_t)stream.next_in; in gunzip()
98 *out_buf = (uintptr_t)stream.next_out; in gunzip()
100 inflateEnd(&stream); in gunzip()