Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\lz4\lz4defs.h Create Date:2022-07-28 06:17:38
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:LZ4_copy8

Proto:static inline __attribute__((__always_inline__)) void LZ4_copy8(void *dst, const void *src)

Type:void

Parameter:

TypeParameterName
void *dst
const void *src
147  a = get value from possibly mis-aligned location((constU32 * )src)
148  b = get value from possibly mis-aligned location((constU32 * )src + 1)
150  put value to a possibly mis-aligned location(a, (U32 * )dst)
151  put value to a possibly mis-aligned location(b, (U32 * )dst + 1)
Caller
NameDescribe
LZ4_decompress_genericLZ4_decompress_generic() :* This generic decompression function covers all use cases.* It shall be instantiated several times, using different sets of directives.* Note that it is important for performance that this function really get inlined,