Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:Read the first five initial bytes into rc->code if they haven't been* read already. (Yes, the first byte gets completely ignored.)

Proto:static bool rc_read_init(struct rc_dec *rc, struct xz_buf *b)

Type:bool

Parameter:

TypeParameterName
struct rc_dec *rc
struct xz_buf *b
451  When Number of initializing bytes remaining to be read* by rc_read_init(). > 0 cycle
452  If in_pos == in_size Then Return false
455  code = (code << 8) + in[in_pos++]
456  --Number of initializing bytes remaining to be read* by rc_read_init().
459  Return true
Caller
NameDescribe
xz_dec_lzma2_runTake care of the LZMA2 control layer, and forward the job of actual LZMA* decoding or copying of uncompressed chunks to other functions.