Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\xz\xz_dec_stream.c Create Date:2022-07-28 07:08:19
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name: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

Proto:static bool fill_temp(struct xz_dec *s, struct xz_buf *b)

Type:bool

Parameter:

TypeParameterName
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  No 3D Now!(buf + pos, in + in_pos, copy_size)
163  in_pos += copy_size
164  pos += copy_size
166  If pos == size Then
167  pos = 0
168  Return true
171  Return false
Caller
NameDescribe
dec_main