函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:FSE_countFast_wksp() :* Same as FSE_countFast(), but using an externally provided scratch buffer.* `workSpace` size must be table of >= `1024` unsigned

函数原型:size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workSpace)

返回类型:size_t

参数:

类型参数名称
unsigned *count
unsigned *maxSymbolValuePtr
const void *source
size_tsourceSize
unsigned *workSpace
450  如果sourceSize小于1500则返回: : count of most numerous element
452  返回:FSE_count_parallel_wksp() :* Same as FSE_count_parallel(), but using an externally provided scratch buffer.* `workSpace` size must be a minimum of `1024 * sizeof(unsigned)``
调用者
名称描述
FSE_count_wkspFSE_count_wksp() :* Same as FSE_count(), but using an externally provided scratch buffer.* `workSpace` size must be table of >= `1024` unsigned
ZSTD_compressSequences_internal