Searched refs:litLengthSum (Results 1 - 4 of 4) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_compress_superblock.c134 size_t litLengthSum = 0; local
135 (void)(litLengthSum); /* suppress unused variable warning on some environments */
138 litLengthSum += seqLen.litLength;
142 assert(litLengthSum <= litSize);
144 assert(litLengthSum == litSize);
H A Dzstd_opt.c75 optPtr->litLengthSumBasePrice = WEIGHT(optPtr->litLengthSum, optLevel);
117 * if first block (detected by optPtr->litLengthSum == 0) : init statistics
132 if (optPtr->litLengthSum == 0) { /* first block : init */
158 optPtr->litLengthSum = 0;
164 optPtr->litLengthSum += optPtr->litLengthFreq[ll];
208 optPtr->litLengthSum = sum_u32(baseLLfreqs, MaxLL+1);
234 optPtr->litLengthSum = ZSTD_scaleStats(optPtr->litLengthFreq, MaxLL, 11);
344 optPtr->litLengthSum++;
1364 assert(ms->opt.litLengthSum == 0); /* first block */
1404 if ( (ms->opt.litLengthSum
[all...]
H A Dzstd_compress_internal.h167 U32 litLengthSum; /* nb of litLength codes */ member in struct:__anon194
H A Dzstd_compress.c1609 ms->opt.litLengthSum = 0; /* force reset of btopt stats */

Completed in 235 milliseconds