Home | History | Annotate | Download | only in libzipfile

Lines Matching defs:zstream

81     z_stream zstream;
86 memset(&zstream, 0, sizeof(zstream));
87 zstream.zalloc = Z_NULL;
88 zstream.zfree = Z_NULL;
89 zstream.opaque = Z_NULL;
90 zstream.next_in = (void*)in;
91 zstream.avail_in = clen;
92 zstream.next_out = (Bytef*) out;
93 zstream.avail_out = unlen;
94 zstream.data_type = Z_UNKNOWN;
98 zerr = inflateInit2(&zstream, -MAX_WBITS);
104 zerr = inflate(&zstream, Z_FINISH);
107 zstream.total_out);
111 inflateEnd(&zstream);