Searched refs:useRowMatchFinder (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_compress.c | 86 …ZSTD_paramSwitch_e useRowMatchFinder; /* Indicates whether the CDict was created with params that … member 261 const ZSTD_paramSwitch_e useRowMatchFinder, in ZSTD_allocateChainTable() argument 263 assert(useRowMatchFinder != ZSTD_ps_auto); in ZSTD_allocateChainTable() 267 …n forDDSDict || ((strategy != ZSTD_fast) && !ZSTD_rowMatchFinderUsed(strategy, useRowMatchFinder)); in ZSTD_allocateChainTable() 296 …cctxParams.useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams.useRowMatchFinder, &cPara… in ZSTD_makeCCtxParamsFromCParams() 355 …cctxParams->useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams->useRowMatchFinder, &par… in ZSTD_CCtxParams_init_internal() 359 … cctxParams->useRowMatchFinder, cctxParams->useBlockSplitter, cctxParams->ldmParams.enableLdm); in ZSTD_CCtxParams_init_internal() 912 CCtxParams->useRowMatchFinder = (ZSTD_paramSwitch_e)value; in ZSTD_CCtxParams_setParameter() 913 return CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_setParameter() 1047 *value = (int)CCtxParams->useRowMatchFinder; in ZSTD_CCtxParams_getParameter() [all …]
|
H A D | zstd_ldm.h | 69 ZSTD_paramSwitch_e useRowMatchFinder,
|
H A D | zstd_ldm.c | 662 ZSTD_paramSwitch_e useRowMatchFinder, in ZSTD_ldm_blockCompress() argument 668 … ZSTD_selectBlockCompressor(cParams->strategy, useRowMatchFinder, ZSTD_matchState_dictMode(ms)); in ZSTD_ldm_blockCompress()
|
H A D | zstd_compress_internal.h | 326 ZSTD_paramSwitch_e useRowMatchFinder; member
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | zstdcli.c | 793 useRowMatchFinder = 0, in main() local 924 if (!strcmp(argument, "--no-row-match-finder")) { useRowMatchFinder = 1; continue; } in main() 925 if (!strcmp(argument, "--row-match-finder")) { useRowMatchFinder = 2; continue; } in main() 1281 benchParams.useRowMatchFinder = useRowMatchFinder; in main() 1435 FIO_setUseRowMatchFinder(prefs, useRowMatchFinder); in main() 1468 …oid)streamSrcSize; (void)srcSizeHint; (void)ZSTD_strategyMap; (void)useRowMatchFinder; /* not used… in main()
|
H A D | benchzstd.h | 120 int useRowMatchFinder; /* use row-based matchfinder if possible */ member
|
H A D | fileio.h | 82 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder);
|
H A D | fileio.c | 310 U32 useRowMatchFinder; member 485 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder) { in FIO_setUseRowMatchFinder() argument 486 prefs->useRowMatchFinder = useRowMatchFinder; in FIO_setUseRowMatchFinder() 1035 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_useRowMatchFinder, prefs->useRowMatchFinder)); in FIO_createCResources() 1825 DISPLAY("%s", INDEX(rowMatchFinderOptions, prefs->useRowMatchFinder)); in FIO_displayCompressionParameters()
|
H A D | benchzstd.c | 178 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_useRowMatchFinder, adv->useRowMatchFinder)); in BMK_initCCtx()
|