Searched refs:hashRateLog (Results 1 - 3 of 3) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_ldm.c35 unsigned hashRateLog = params->hashRateLog; local
40 * 1. it has to trigger on average every 2^(hashRateLog) bytes;
47 * To match condition 1 we use a mask with hashRateLog bits set
52 if (hashRateLog > 0 && hashRateLog <= maxBitsInMask) {
53 state->stopMask = (((U64)1 << hashRateLog) - 1) << (maxBitsInMask - hashRateLog);
56 state->stopMask = ((U64)1 << hashRateLog) - 1;
147 if (params->hashRateLog
[all...]
H A Dzstd_compress_internal.h267 U32 hashRateLog; /* Log number of entries to skip */ member in struct:__anon201
H A Dzstd_compress.c283 assert(cctxParams.ldmParams.hashRateLog < 32);
819 CCtxParams->ldmParams.hashRateLog = value;
820 return CCtxParams->ldmParams.hashRateLog;
954 *value = CCtxParams->ldmParams.hashRateLog;
1775 assert(params->ldmParams.hashRateLog < 32);

Completed in 270 milliseconds