Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:! ZSTD_reduceTable() :* reduce table indexes by `reducerValue`

Proto:static void ZSTD_reduceTable(U32 *const table, U32 const size, U32 const reducerValue)

Type:void

Parameter:

TypeParameterName
U32 *consttable
U32 constsize
U32 constreducerValue
400  When u < size cycle
401  If table[u] < reducerValue Then table[u] = 0
403  Else table[u] -= reducerValue
Caller
NameDescribe
ZSTD_reduceIndex! ZSTD_reduceIndex() :* rescale all indexes to avoid future overflow (indexes are U32)