Home
last modified time | relevance | path

Searched refs:wtSize (Results 1 – 1 of 1) sorted by relevance

/lib/zstd/
Dhuf_compress.c82 size_t HUF_compressWeights_wksp(void *dst, size_t dstSize, const void *weightTable, size_t wtSize, … in HUF_compressWeights_wksp() argument
111 if (wtSize <= 1) in HUF_compressWeights_wksp()
116 CHECK_V_F(maxCount, FSE_count_simple(count, &maxSymbolValue, weightTable, wtSize)); in HUF_compressWeights_wksp()
117 if (maxCount == wtSize) in HUF_compressWeights_wksp()
123 tableLog = FSE_optimalTableLog(tableLog, wtSize, maxSymbolValue); in HUF_compressWeights_wksp()
124 CHECK_F(FSE_normalizeCount(norm, tableLog, count, wtSize, maxSymbolValue)); in HUF_compressWeights_wksp()
135 CHECK_V_F(cSize, FSE_compress_usingCTable(op, oend - op, weightTable, wtSize, CTable)); in HUF_compressWeights_wksp()