• Home
  • Raw
  • Download

Lines Matching refs:zstream

48     z_stream zstream;  in inflateToBuffer()  local
63 memset(&zstream, 0, sizeof(zstream)); in inflateToBuffer()
64 zstream.zalloc = Z_NULL; in inflateToBuffer()
65 zstream.zfree = Z_NULL; in inflateToBuffer()
66 zstream.opaque = Z_NULL; in inflateToBuffer()
67 zstream.next_in = NULL; in inflateToBuffer()
68 zstream.avail_in = 0; in inflateToBuffer()
69 zstream.next_out = (Bytef*) buf; in inflateToBuffer()
70 zstream.avail_out = uncompressedLen; in inflateToBuffer()
71 zstream.data_type = Z_UNKNOWN; in inflateToBuffer()
77 zerr = inflateInit2(&zstream, -MAX_WBITS); in inflateToBuffer()
95 if (zstream.avail_in == 0) { in inflateToBuffer()
110 zstream.next_in = readBuf; in inflateToBuffer()
111 zstream.avail_in = getSize; in inflateToBuffer()
115 zerr = inflate(&zstream, Z_NO_FLUSH); in inflateToBuffer()
126 if ((long) zstream.total_out != uncompressedLen) { in inflateToBuffer()
128 zstream.total_out, uncompressedLen); in inflateToBuffer()
136 inflateEnd(&zstream); /* free up any allocated structures */ in inflateToBuffer()
160 z_stream zstream; in inflateToBuffer() local
175 memset(&zstream, 0, sizeof(zstream)); in inflateToBuffer()
176 zstream.zalloc = Z_NULL; in inflateToBuffer()
177 zstream.zfree = Z_NULL; in inflateToBuffer()
178 zstream.opaque = Z_NULL; in inflateToBuffer()
179 zstream.next_in = NULL; in inflateToBuffer()
180 zstream.avail_in = 0; in inflateToBuffer()
181 zstream.next_out = (Bytef*) buf; in inflateToBuffer()
182 zstream.avail_out = uncompressedLen; in inflateToBuffer()
183 zstream.data_type = Z_UNKNOWN; in inflateToBuffer()
189 zerr = inflateInit2(&zstream, -MAX_WBITS); in inflateToBuffer()
207 if (zstream.avail_in == 0) { in inflateToBuffer()
222 zstream.next_in = readBuf; in inflateToBuffer()
223 zstream.avail_in = getSize; in inflateToBuffer()
227 zerr = inflate(&zstream, Z_NO_FLUSH); in inflateToBuffer()
238 if ((long) zstream.total_out != uncompressedLen) { in inflateToBuffer()
240 zstream.total_out, uncompressedLen); in inflateToBuffer()
248 inflateEnd(&zstream); /* free up any allocated structures */ in inflateToBuffer()