Searched refs:minMatchLength (Results 1 - 3 of 3) sorted by path

/linux-master/lib/zstd/compress/
H A Dzstd_compress.c807 CCtxParams->ldmParams.minMatchLength = value;
808 return CCtxParams->ldmParams.minMatchLength;
948 *value = CCtxParams->ldmParams.minMatchLength;
H A Dzstd_compress_internal.h266 U32 minMatchLength; /* Minimum match length */ member in struct:__anon201
H A Dzstd_ldm.c34 unsigned maxBitsInMask = MIN(params->minMatchLength, 64);
41 * 2. ideally, it has to depend on a window of minMatchLength bytes.
61 * Feeds [data, data + minMatchLength) into the hash without registering any
66 BYTE const* data, size_t minMatchLength)
75 while (n + 3 < minMatchLength) {
81 while (n < minMatchLength) {
142 if (!params->minMatchLength) params->minMatchLength = LDM_MIN_MATCH_LENGTH;
167 return params.enableLdm == ZSTD_ps_enable ? (maxChunkSize / params.minMatchLength) : 0;
271 U32 const minMatchLength local
65 ZSTD_ldm_gear_reset(ldmRollingHashState_t* state, BYTE const* data, size_t minMatchLength) argument
327 U32 const minMatchLength = params->minMatchLength; local
[all...]

Completed in 217 milliseconds