Searched refs:ZSTD_ps_enable (Results 1 - 4 of 4) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_compress.c220 return ZSTD_rowMatchFinderSupported(strategy) && (mode == ZSTD_ps_enable);
235 if (cParams->windowLog > 14) mode = ZSTD_ps_enable;
237 if (cParams->windowLog > 17) mode = ZSTD_ps_enable;
246 return (cParams->strategy >= ZSTD_btopt && cParams->windowLog >= 17) ? ZSTD_ps_enable : ZSTD_ps_disable;
267 return (cParams->strategy >= ZSTD_btopt && cParams->windowLog >= 27) ? ZSTD_ps_enable : ZSTD_ps_disable;
280 if (cctxParams.ldmParams.enableLdm == ZSTD_ps_enable) {
506 ZSTD_STATIC_ASSERT(ZSTD_ps_auto < ZSTD_ps_enable && ZSTD_ps_enable < ZSTD_ps_disable);
1340 if (CCtxParams->ldmParams.enableLdm == ZSTD_ps_enable) cParams.windowLog = ZSTD_LDM_DEFAULT_WINDOW_LOG;
1411 size_t const ldmSeqSpace = ldmParams->enableLdm == ZSTD_ps_enable
[all...]
H A Dzstd_ldm.c162 return params.enableLdm == ZSTD_ps_enable ? totalSize : 0;
167 return params.enableLdm == ZSTD_ps_enable ? (maxChunkSize / params.minMatchLength) : 0;
H A Dzstd_compress_internal.h263 ZSTD_paramSwitch_e enableLdm; /* ZSTD_ps_enable to enable LDM. ZSTD_ps_auto by default */
539 case ZSTD_ps_enable:
/linux-master/include/linux/
H A Dzstd_lib.h1297 * decision on whether or not to enable the feature (ZSTD_ps_auto), but setting the switch to ZSTD_ps_enable
1301 ZSTD_ps_enable = 1, /* Force-enable the feature */ enumerator in enum:__anon105
1731 * Set to ZSTD_ps_enable to always compress literals. (Note: uncompressed literals
1892 * Set to ZSTD_ps_enable to always use block splitter.
1903 * Set to ZSTD_ps_enable to force usage of row-based matchfinder.

Completed in 114 milliseconds