函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:Tree updater, providing best match

函数原型:static size_t ZSTD_BtFindBestMatch_extDict(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, size_t *offsetPtr, const U32 maxNbAttempts, const U32 mls)

返回类型:size_t

参数:

类型参数名称
ZSTD_CCtx *zc
const BYTE *constip
const BYTE *constiLimit
size_t *offsetPtr
const U32maxNbAttempts
const U32mls
1769  如果ip小于basenextToUpdate则返回:0
1771  ZSTD_updateTree_extDict(zc, ip, iLimit, maxNbAttempts, mls)
1772  返回:ZSTD_insertBtAndFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, mls, 1)
调用者
名称描述
ZSTD_BtFindBestMatch_selectMLS_extDict