Lines Matching refs:inflate
41 // inflate is initialized with those bits and the 32K of uncompressed data, and
134 z_stream strm = {0}; // inflate engine (gets fired up later)
180 // We skip the inflate() call at the start of raw deflate data in
185 // Inflate and update the number of uncompressed bytes.
187 ret = inflate(&strm, Z_BLOCK);
210 // inflate state to read another gzip member. On success, this will
272 // Then feed that to inflate(). This does what inflatePrime() does, except that
275 // value from inflate() is returned.
291 // Build an input buffer for inflate that is a multiple of eight bits in
310 // Deliver the input to inflate(). There is no output space provided, but
311 // inflate() can't get stuck waiting on output not ingesting all of the
322 return inflate(strm, Z_NO_FLUSH);
352 // Initialize the input file and prime the inflate engine to start there.
395 ret = inflate(&strm, Z_NO_FLUSH);
425 // There's more after the gzip trailer. Use inflate to skip the
426 // gzip header and resume the raw inflate there.
439 ret = inflate(&strm, Z_BLOCK); // stop at end of header