Searched refs:useRowMatchFinder (Results 1 – 14 of 14) sorted by relevance
| /freebsd/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 91 …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 D | zstd_ldm.h | 65 ZSTD_ParamSwitch_e useRowMatchFinder,
|
| H A D | zstd_ldm.c | 683 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 D | zstd_compress_internal.h | 417 ZSTD_ParamSwitch_e useRowMatchFinder; member
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
| H A D | zstd_compress.c | 92 …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 D | zstd_ldm.h | 66 ZSTD_ParamSwitch_e useRowMatchFinder,
|
| H A D | zstd_ldm.c | 684 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 D | zstd_compress_internal.h | 418 ZSTD_ParamSwitch_e useRowMatchFinder; member
|
| /freebsd/sys/contrib/zstd/programs/ |
| H A D | fileio_types.h | 43 int useRowMatchFinder; member
|
| H A D | benchzstd.h | 108 int useRowMatchFinder; /* use row-based matchfinder if possible */ member
|
| H A D | zstdcli.c | 869 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 D | fileio.h | 72 void FIO_setUseRowMatchFinder(FIO_prefs_t* const prefs, int useRowMatchFinder);
|
| H A D | fileio.c | 398 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 D | benchzstd.c | 261 ctx, ZSTD_c_useRowMatchFinder, adv->useRowMatchFinder)); in BMK_initCCtx()
|