Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:LZ4_renormDictT

Proto:static void LZ4_renormDictT(LZ4_stream_t_internal *LZ4_dict, const BYTE *src)

Type:void

Parameter:

TypeParameterName
LZ4_stream_t_internal *LZ4_dict
const BYTE *src
815  If currentOffset > 0x80000000 || currentOffset > src Then
819  delta = currentOffset - 64 * KB
820  dictEnd = dictionary + dictSize
823  When i < LZ4_HASH_SIZE_U32 cycle
824  If hashTable[i] < delta Then hashTable[i] = 0
826  Else hashTable[i] -= delta
829  currentOffset = 64 * KB
830  If dictSize > 64 * KB Then dictSize = 64 * KB
832  dictionary = dictEnd - dictSize
Caller
NameDescribe
LZ4_compress_fast_continue