Home | History | Annotate | Download | only in linux

Lines Matching refs:strm

190 extern int deflateInit (z_streamp strm, int level);
212 extern int zlib_deflate (z_streamp strm, int flush);
273 deflate() sets strm->adler to the adler32 checksum of all input read
290 extern int zlib_deflateEnd (z_streamp strm);
312 extern int zlib_inflateInit (z_streamp strm);
332 extern int zlib_inflate (z_streamp strm, int flush);
371 Also to assist in this, on return inflate() will set strm->data_type to the
372 number of unused bits in the last byte taken from strm->next_in, plus 64
377 uncompressed data from that block has been written to strm->next_out. The
400 below), inflate sets strm->adler to the adler32 checksum of the dictionary
402 strm->adler to the adler32 checksum of all output produced so far (that is,
431 extern int zlib_inflateEnd (z_streamp strm);
449 extern int deflateInit2 (z_streamp strm,
493 extern int zlib_deflateSetDictionary (z_streamp strm,
517 Upon return of this function, strm->adler is set to the Adler32 value
550 extern int zlib_deflateReset (z_streamp strm);
567 extern int zlib_deflateParams (z_streamp strm, int level, int strategy);
580 be compressed and flushed. In particular, strm->avail_out must be non-zero.
584 if strm->avail_out was zero.
588 extern int inflateInit2 (z_streamp strm, int windowBits);
618 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
622 memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg
629 extern int zlib_inflateSetDictionary (z_streamp strm,
652 extern int zlib_inflateSync (z_streamp strm);
668 extern int zlib_inflateReset (z_streamp strm);
678 extern int zlib_inflateIncomp (z_stream *strm);
687 #define zlib_deflateInit(strm, level) \
688 zlib_deflateInit2((strm), (level), Z_DEFLATED, MAX_WBITS, \
690 #define zlib_inflateInit(strm) \
691 zlib_inflateInit2((strm), DEF_WBITS)
693 extern int zlib_deflateInit2(z_streamp strm, int level, int method,
696 extern int zlib_inflateInit2(z_streamp strm, int windowBits);