Searched refs:wtSize (Results 1 – 1 of 1) sorted by relevance
| /linux-6.15/lib/zstd/compress/ |
| H A D | huf_compress.c | 146 const void* weightTable, size_t wtSize, in HUF_compressWeights() argument 160 if (wtSize <= 1) return 0; /* Not compressible */ in HUF_compressWeights() 163 … maxCount = HIST_count_simple(wksp->count, &maxSymbolValue, weightTable, wtSize); /* never fails… in HUF_compressWeights() 164 if (maxCount == wtSize) return 1; /* only a single symbol in src : rle */ in HUF_compressWeights() 168 tableLog = FSE_optimalTableLog(tableLog, wtSize, maxSymbolValue); in HUF_compressWeights() 169 …CHECK_F( FSE_normalizeCount(wksp->norm, tableLog, wksp->count, wtSize, maxSymbolValue, /* useLowPr… in HUF_compressWeights() 178 …{ CHECK_V_F(cSize, FSE_compress_usingCTable(op, (size_t)(oend - op), weightTable, wtSize, wksp->… in HUF_compressWeights()
|