Searched refs:comprParams (Results 1 – 5 of 5) sorted by relevance
/external/zstd/programs/ |
D | benchzstd.c | 168 const ZSTD_compressionParameters* comprParams, in BMK_initCCtx() argument 183 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_windowLog, (int)comprParams->windowLog)); in BMK_initCCtx() 184 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_hashLog, (int)comprParams->hashLog)); in BMK_initCCtx() 185 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_chainLog, (int)comprParams->chainLog)); in BMK_initCCtx() 186 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_searchLog, (int)comprParams->searchLog)); in BMK_initCCtx() 187 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_minMatch, (int)comprParams->minMatch)); in BMK_initCCtx() 188 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_targetLength, (int)comprParams->targetLength)); in BMK_initCCtx() 190 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_strategy, comprParams->strategy)); in BMK_initCCtx() 206 const ZSTD_compressionParameters* comprParams; member 212 … BMK_initCCtx(ag->cctx, ag->dictBuffer, ag->dictBufferSize, ag->cLevel, ag->comprParams, ag->adv); in local_initCCtx() [all …]
|
D | benchzstd.h | 187 int cLevel, const ZSTD_compressionParameters* comprParams, 201 int cLevel, const ZSTD_compressionParameters* comprParams,
|
D | fileio.h | 121 ZSTD_compressionParameters comprParams); 143 ZSTD_compressionParameters comprParams);
|
D | fileio.c | 901 ZSTD_compressionParameters* comprParams, in FIO_adjustParamsForPatchFromMode() argument 911 comprParams->windowLog = MIN(ZSTD_WINDOWLOG_MAX, fileWindowLog); in FIO_adjustParamsForPatchFromMode() 928 int cLevel, ZSTD_compressionParameters comprParams) { in FIO_createCResources() argument 945 …FIO_adjustParamsForPatchFromMode(prefs, &comprParams, UTIL_getFileSize(dictFileName), ssSize > 0 ?… in FIO_createCResources() 957 if (prefs->adaptiveMode && !prefs->ldmFlag && !comprParams.windowLog) in FIO_createCResources() 958 comprParams.windowLog = ADAPT_WINDOWLOG_DEFAULT; in FIO_createCResources() 980 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_windowLog, (int)comprParams.windowLog) ); in FIO_createCResources() 981 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_chainLog, (int)comprParams.chainLog) ); in FIO_createCResources() 982 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_hashLog, (int)comprParams.hashLog) ); in FIO_createCResources() 983 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_searchLog, (int)comprParams.searchLog) ); in FIO_createCResources() [all …]
|
/external/zstd/tests/ |
D | paramgrill.c | 1039 const paramValues_t* comprParams; member 1049 if(ag->comprParams->vals[i] != PARAM_UNSET) in local_initCCtx() 1050 ZSTD_CCtx_setParameter(ag->cctx, cctxSetParamTable[i], ag->comprParams->vals[i]); in local_initCCtx() 1553 int cLevel, const paramValues_t* comprParams, in BMK_benchMemInvertible() argument 1573 display_params_tested(*comprParams); in BMK_benchMemInvertible() 1612 cctxprep.comprParams = comprParams; in BMK_benchMemInvertible() 1672 bResult.cMem = ((size_t)1 << (comprParams->vals[wlog_ind])) + ZSTD_sizeof_CCtx(cctx); in BMK_benchMemInvertible()
|