Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\decompress_unxz.c Create Date:2022-07-28 06:17:04
Last Modify:2020-03-15 22:53:09 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:FIXME: Not all basic memory functions are provided in architecture-specific* files (yet). We define our own versions here for now, but this should be* only a temporary solution.* memeq and memzero are not used much and any remotely sane implementation

Proto:static bool memeq(const void *a, const void *b, size_t size)

Type:bool

Parameter:

TypeParameterName
const void *a
const void *b
size_tsize
179  x = a
180  y = b
183  When i < size cycle If x[i] != y[i] Then
185  Return false
187  Return true
Caller
NameDescribe
dec_stream_headerDecode the Stream Header field (the first 12 bytes of the .xz Stream).
dec_stream_footerDecode the Stream Footer field (the last 12 bytes of the .xz Stream)
dec_main