Lines Matching refs:inflate
41 // inflate is initialized with those bits and the 32K of uncompressed data, and
137 z_stream strm = {0}; // inflate engine (gets fired up later)
183 // We skip the inflate() call at the start of raw deflate data in
190 ret = inflate(&strm, Z_BLOCK);
213 // inflate state to read another gzip member. On success, this will
275 // Then feed that to inflate(). This does what inflatePrime() does, except that
278 // value from inflate() is returned.
295 // Build an input buffer for inflate that is a multiple of eight bits in
314 // Deliver the input to inflate(). There is no output space provided, but
315 // inflate() can't get stuck waiting on output not ingesting all of the
326 return inflate(strm, Z_NO_FLUSH);
357 // Initialize the input file and prime the inflate engine to start there.
400 ret = inflate(&strm, Z_NO_FLUSH);
430 // There's more after the gzip trailer. Use inflate to skip the
431 // gzip header and resume the raw inflate there.
444 ret = inflate(&strm, Z_BLOCK); // stop at end of header