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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_internal.h 1098 U32 cycleLog,
1103 U32 const cycleSize = 1u << cycleLog;
1133 U32 cycleLog,
1141 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) {
1154 * The least significant cycleLog bits of the indices must remain the same,
1159 U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog,
1181 U32 const cycleSize = 1u << cycleLog;
zstd_compress.c 1563 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy);
1565 if (cycleLog > dictAndWindowLog)
1566 cPar.chainLog -= (cycleLog - dictAndWindowLog);
4532 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy);
4534 if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, ip, iend)) {
4535 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip);

Completed in 56 milliseconds