Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c296 …cctxParams.useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(cctxParams.useRowMatchFinder, &cPara… in ZSTD_makeCCtxParamsFromCParams()
1507 …ZSTD_paramSwitch_e const useRowMatchFinder = ZSTD_resolveRowMatchFinderMode(params->useRowMatchFin… in ZSTD_estimateCCtxSize_usingCCtxParams() local
1971 params->useRowMatchFinder, in ZSTD_resetCCtx_internal()
2064 params.useRowMatchFinder = cdict->useRowMatchFinder; /* cdict overrides */ in ZSTD_resetCCtx_byAttachingCDict()
2118 params.useRowMatchFinder = cdict->useRowMatchFinder; in ZSTD_resetCCtx_byCopyingCDict()
2225 params.useRowMatchFinder = srcCCtx->appliedParams.useRowMatchFinder; in ZSTD_copyCCtx_internal()
4819 params.useRowMatchFinder, in ZSTD_initCDict_internal()
4872 cdict->useRowMatchFinder = useRowMatchFinder; in ZSTD_createCDict_advanced_internal()
5026 params.useRowMatchFinder = useRowMatchFinder; in ZSTD_initStaticCDict()
5027 cdict->useRowMatchFinder = useRowMatchFinder; in ZSTD_initStaticCDict()
[all …]
H A Dzstd_ldm.h69 ZSTD_paramSwitch_e useRowMatchFinder,
H A Dzstd_ldm.c662 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 Dzstd_compress_internal.h326 ZSTD_paramSwitch_e useRowMatchFinder; member
/freebsd-14.2/sys/contrib/zstd/programs/
H A Dbenchzstd.h120 int useRowMatchFinder; /* use row-based matchfinder if possible */ member
H A Dzstdcli.c793 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 Dfileio.h82 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder);
H A Dfileio.c310 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 Dbenchzstd.c178 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_useRowMatchFinder, adv->useRowMatchFinder)); in BMK_initCCtx()