Searched refs:cPar (Results 1 – 1 of 1) sorted by relevance
180 ZSTD_compressionParameters ZSTD_adjustCParams(ZSTD_compressionParameters cPar, unsigned long long s… in ZSTD_adjustCParams() argument183 return cPar; /* no size information available : no adjustment */ in ZSTD_adjustCParams()191 if (cPar.windowLog > srcLog) in ZSTD_adjustCParams()192 cPar.windowLog = srcLog; in ZSTD_adjustCParams()195 if (cPar.hashLog > cPar.windowLog) in ZSTD_adjustCParams()196 cPar.hashLog = cPar.windowLog; in ZSTD_adjustCParams()198 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams()199 if (cycleLog > cPar.windowLog) in ZSTD_adjustCParams()200 cPar.chainLog -= (cycleLog - cPar.windowLog); in ZSTD_adjustCParams()203 if (cPar.windowLog < ZSTD_WINDOWLOG_ABSOLUTEMIN) in ZSTD_adjustCParams()[all …]