函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\zlib_inflate\inflate.c Create Date:2022-07-27 07:55:03
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:zlib_inflateReset

函数原型:int zlib_inflateReset(z_streamp strm)

返回类型:int

参数:

类型参数名称
z_streampstrm
27  如果(strm == NULL || not visible by applications == NULL)则返回:Z_STREAM_ERROR
28  state等于 not visible by applications
29  total nb of input bytes read so far 等于 total nb of bytes output so far 等于protected copy of output count 等于0
30  last error message, NULL if no error = NULL
31  adler32 value of the uncompressed data 等于1
32  current inflate mode 等于 waiting for magic header
33  rue if processing last block 等于0
34  rue if dictionary provided 等于0
35  zlib header max distance (INFLATE_STRICT) 等于32768U
36  put bit accumulator 等于0
37  umber of bits in "in" 等于0
38  starting table for length/literal codes 等于starting table for distance codes 等于xt available space in codes[] 等于space for code tables
41  window size or zero if not using window 等于1U左移log base 2 of requested window size
42  window write index 等于0
43  valid bytes in the window 等于0
45  返回:Allowed flush values; see deflate() and inflate() below for details
调用者
名称描述
zlib_inflateInit2