Searched refs:wtSize (Results 1 – 1 of 1) sorted by relevance
/linux-4.19.296/lib/zstd/ |
D | huf_compress.c | 82 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()
|