Searched refs:strm_decompress (Results 1 – 3 of 3) sorted by relevance
79 z_stream strm_decompress; in hammer2_decompress_ZLIB() local85 bzero(&strm_decompress, sizeof(strm_decompress)); in hammer2_decompress_ZLIB()86 strm_decompress.avail_in = 0; in hammer2_decompress_ZLIB()87 strm_decompress.next_in = Z_NULL; in hammer2_decompress_ZLIB()88 ret = inflateInit(&strm_decompress); in hammer2_decompress_ZLIB()94 strm_decompress.next_in = inbuf; in hammer2_decompress_ZLIB()95 strm_decompress.next_out = OutBuf; in hammer2_decompress_ZLIB()96 strm_decompress.avail_in = insize; in hammer2_decompress_ZLIB()97 strm_decompress.avail_out = outsize; in hammer2_decompress_ZLIB()98 ret = inflate(&strm_decompress, Z_FINISH); in hammer2_decompress_ZLIB()[all …]
206 z_stream strm_decompress; in hammer2_decompress_ZLIB_callback() local213 strm_decompress.avail_in = 0; in hammer2_decompress_ZLIB_callback()214 strm_decompress.next_in = Z_NULL; in hammer2_decompress_ZLIB_callback()216 ret = inflateInit(&strm_decompress); in hammer2_decompress_ZLIB_callback()222 strm_decompress.next_in = __DECONST(char *, data); in hammer2_decompress_ZLIB_callback()225 strm_decompress.avail_in = bytes; in hammer2_decompress_ZLIB_callback()226 strm_decompress.next_out = compressed_buffer; in hammer2_decompress_ZLIB_callback()227 strm_decompress.avail_out = bp->b_bufsize; in hammer2_decompress_ZLIB_callback()229 ret = inflate(&strm_decompress, Z_FINISH); in hammer2_decompress_ZLIB_callback()235 result = bp->b_bufsize - strm_decompress.avail_out; in hammer2_decompress_ZLIB_callback()[all …]
196 z_stream strm_decompress; in hammer2_decompress_ZLIB_callback() local203 strm_decompress.avail_in = 0; in hammer2_decompress_ZLIB_callback()204 strm_decompress.next_in = Z_NULL; in hammer2_decompress_ZLIB_callback()206 ret = inflateInit(&strm_decompress); in hammer2_decompress_ZLIB_callback()212 strm_decompress.next_in = __DECONST(char *, data); in hammer2_decompress_ZLIB_callback()215 strm_decompress.avail_in = bytes; in hammer2_decompress_ZLIB_callback()216 strm_decompress.next_out = compressed_buffer; in hammer2_decompress_ZLIB_callback()217 strm_decompress.avail_out = bp->b_bufsize; in hammer2_decompress_ZLIB_callback()219 ret = inflate(&strm_decompress, Z_FINISH); in hammer2_decompress_ZLIB_callback()225 result = bp->b_bufsize - strm_decompress.avail_out; in hammer2_decompress_ZLIB_callback()[all …]