函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\zstd\fse.h Create Date:2022-07-27 07:59:16
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:! FSE_initCState2() :* Same as FSE_initCState(), but the first symbol to include (which will be the last to be read)* uses the smallest state value possible, saving the cost of this symbol

函数原型:ZSTD_STATIC void FSE_initCState2(FSE_CState_t *statePtr, const FSE_CTable *ct, U32 symbol)

返回类型:void

参数:

类型参数名称
FSE_CState_t *statePtr
const FSE_CTable *ct
U32symbol
443  FSE_initCState(statePtr, ct)
445  const FSE_symbolCompressionTransform symbolTT = )
446  stateTable等于stateTable
447  nbBitsOut等于deltaNbBits加1左移15位的值右移16位
448  value等于nbBitsOut左移16位的值减deltaNbBits
449  value等于stateTable[(value >> nbBitsOut) + deltaFindState]
调用者
名称描述
FSE_compress_usingCTable_generic
ZSTD_compressSequences_internal