HomeSort by: relevance | last modified time | path
    Searched refs:matchLengthFreq (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 196 optPtr->matchLengthFreq[ml] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
197 optPtr->matchLengthSum += optPtr->matchLengthFreq[ml];
235 optPtr->matchLengthFreq[ml] = 1;
256 optPtr->matchLengthSum = ZSTD_scaleStats(optPtr->matchLengthFreq, MaxML, 11);
345 price += (ML_bits[mlCode] * BITCOST_MULTIPLIER) + (optPtr->matchLengthSumBasePrice - WEIGHT(optPtr->matchLengthFreq[mlCode], optLevel));
384 optPtr->matchLengthFreq[mlCode]++;
zstd_compress_internal.h 231 unsigned* matchLengthFreq; /* table of matchLength statistics, of size (MaxML+1) */
zstd_compress.c 2058 ms->opt.matchLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned64(ws, (MaxML+1) * sizeof(unsigned));
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v05.c 486 U32* matchLengthFreq;
zstd_v06.c 536 U32* matchLengthFreq;
zstd_v07.c 2771 U32* matchLengthFreq;

Completed in 82 milliseconds