Searched refs:litLengthFreq (Results 1 - 3 of 3) sorted by path

/linux-master/lib/zstd/compress/
H A Dzstd_compress.c1692 ms->opt.litLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxLL+1) * sizeof(unsigned));
H A Dzstd_compress_internal.h160 unsigned* litLengthFreq; /* table of litLength statistics, of size (MaxLL+1) */ member in struct:__anon194
H A Dzstd_opt.c163 optPtr->litLengthFreq[ll] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
164 optPtr->litLengthSum += optPtr->litLengthFreq[ll];
207 ZSTD_memcpy(optPtr->litLengthFreq, baseLLfreqs, sizeof(baseLLfreqs));
234 optPtr->litLengthSum = ZSTD_scaleStats(optPtr->litLengthFreq, MaxLL, 11);
287 - WEIGHT(optPtr->litLengthFreq[llCode], optLevel);
343 optPtr->litLengthFreq[llCode]++;

Completed in 303 milliseconds