函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:Fill s->temp by copying data starting from b->in[b->in_pos]. Caller* must have set s->temp.pos to indicate how much data we are supposed* to copy into s->temp.buf. Return true once s->temp.pos has reached

函数原型:static bool fill_temp(struct xz_dec *s, struct xz_buf *b)

返回类型:bool

参数:

类型参数名称
struct xz_dec *s>temp.size.
struct xz_buf *b
159  copy_size等于min_t - return minimum of two values, using the specified type*@type: data type to use*@x: first value*@y: second value(size_t, in_size - in_pos, size - pos)
162  内存复制(buf + pos, in + in_pos, copy_size)
163  in_pos加等于copy_size
164  pos加等于copy_size
166  如果pos恒等于size
167  pos等于0
168  返回:true
171  返回:false
调用者
名称描述
dec_main