Home
last modified time | relevance | path

Searched refs:useRowMatchFinder (Results 1 – 14 of 14) sorted by relevance

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c91 …ZSTD_ParamSwitch_e useRowMatchFinder; /* Indicates whether the CDict was created with params that … member
256 const ZSTD_ParamSwitch_e useRowMatchFinder, in ZSTD_allocateChainTable() argument
258 assert(useRowMatchFinder != ZSTD_ps_auto); in ZSTD_allocateChainTable()
262 …n forDDSDict || ((strategy != ZSTD_fast) && !ZSTD_rowMatchFinderUsed(strategy, useRowMatchFinder)); in ZSTD_allocateChainTable()
319 …cctxParams.useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams.useRowMatchFinder, &cPara… in ZSTD_makeCCtxParamsFromCParams()
385 …cctxParams->useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams->useRowMatchFinder, &par… in ZSTD_CCtxParams_init_internal()
392 … cctxParams->useRowMatchFinder, cctxParams->postBlockSplitter, cctxParams->ldmParams.enableLdm); in ZSTD_CCtxParams_init_internal()
989 CCtxParams->useRowMatchFinder = (ZSTD_ParamSwitch_e)value; in ZSTD_CCtxParams_setParameter()
990 return CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_setParameter()
1149 *value = (int)CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_getParameter()
[all …]
H A Dzstd_ldm.h65 ZSTD_ParamSwitch_e useRowMatchFinder,
H A Dzstd_ldm.c683 ZSTD_ParamSwitch_e useRowMatchFinder, in ZSTD_ldm_blockCompress() argument
689 … ZSTD_selectBlockCompressor(cParams->strategy, useRowMatchFinder, ZSTD_matchState_dictMode(ms)); in ZSTD_ldm_blockCompress()
H A Dzstd_compress_internal.h417 ZSTD_ParamSwitch_e useRowMatchFinder; member
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c92 …ZSTD_ParamSwitch_e useRowMatchFinder; /* Indicates whether the CDict was created with params that … member
257 const ZSTD_ParamSwitch_e useRowMatchFinder, in ZSTD_allocateChainTable() argument
259 assert(useRowMatchFinder != ZSTD_ps_auto); in ZSTD_allocateChainTable()
263 …n forDDSDict || ((strategy != ZSTD_fast) && !ZSTD_rowMatchFinderUsed(strategy, useRowMatchFinder)); in ZSTD_allocateChainTable()
320 …cctxParams.useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams.useRowMatchFinder, &cPara… in ZSTD_makeCCtxParamsFromCParams()
386 …cctxParams->useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams->useRowMatchFinder, &par… in ZSTD_CCtxParams_init_internal()
393 … cctxParams->useRowMatchFinder, cctxParams->postBlockSplitter, cctxParams->ldmParams.enableLdm); in ZSTD_CCtxParams_init_internal()
990 CCtxParams->useRowMatchFinder = (ZSTD_ParamSwitch_e)value; in ZSTD_CCtxParams_setParameter()
991 return CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_setParameter()
1150 *value = (int)CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_getParameter()
[all …]
H A Dzstd_ldm.h66 ZSTD_ParamSwitch_e useRowMatchFinder,
H A Dzstd_ldm.c684 ZSTD_ParamSwitch_e useRowMatchFinder, in ZSTD_ldm_blockCompress() argument
690 … ZSTD_selectBlockCompressor(cParams->strategy, useRowMatchFinder, ZSTD_matchState_dictMode(ms)); in ZSTD_ldm_blockCompress()
H A Dzstd_compress_internal.h418 ZSTD_ParamSwitch_e useRowMatchFinder; member
/freebsd/sys/contrib/zstd/programs/
H A Dfileio_types.h43 int useRowMatchFinder; member
H A Dbenchzstd.h108 int useRowMatchFinder; /* use row-based matchfinder if possible */ member
H A Dzstdcli.c869 ZSTD_ParamSwitch_e useRowMatchFinder = ZSTD_ps_auto; in main() local
994 … if (!strcmp(argument, "--no-row-match-finder")) { useRowMatchFinder = ZSTD_ps_disable; continue; } in main()
995 … if (!strcmp(argument, "--row-match-finder")) { useRowMatchFinder = ZSTD_ps_enable; continue; } in main()
1415 benchParams.useRowMatchFinder = (int)useRowMatchFinder; in main()
1594 FIO_setUseRowMatchFinder(prefs, (int)useRowMatchFinder); in main()
1632 (void)ZSTD_strategyMap; (void)useRowMatchFinder; (void)cType; in main()
H A Dfileio.h72 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder);
H A Dfileio.c398 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder) { in FIO_setUseRowMatchFinder() argument
399 prefs->useRowMatchFinder = useRowMatchFinder; in FIO_setUseRowMatchFinder()
1171 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_useRowMatchFinder, prefs->useRowMatchFinder)); in FIO_createCResources()
2124 DISPLAY("%s", INDEX(rowMatchFinderOptions, prefs->useRowMatchFinder)); in FIO_displayCompressionParameters()
H A Dbenchzstd.c261 ctx, ZSTD_c_useRowMatchFinder, adv->useRowMatchFinder)); in BMK_initCCtx()