Lines Matching defs:mls
22 U32 const mls = cParams->minMatch;
33 size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls);
39 size_t const hash = ZSTD_hashPtr(ip + p, hBits, mls);
96 U32 const mls, U32 const hasStep)
163 hash0 = ZSTD_hashPtr(ip0, hlog, mls);
164 hash1 = ZSTD_hashPtr(ip1, hlog, mls);
206 hash1 = ZSTD_hashPtr(ip2, hlog, mls);
235 hash1 = ZSTD_hashPtr(ip2, hlog, mls);
299 hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could be > iend-8 */
300 hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
307 hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base);
317 #define ZSTD_GEN_FAST_FN(dictMode, mls, step) \
318 static size_t ZSTD_compressBlock_fast_##dictMode##_##mls##_##step( \
322 return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
339 U32 const mls = ms->cParams.minMatch;
342 switch(mls)
355 switch(mls)
374 void const* src, size_t srcSize, U32 const mls, U32 const hasStep)
427 size_t const h = ZSTD_hashPtr(ip, hlog, mls);
444 size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls);
487 hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; /* here because curr+2 could be > iend-8 */
488 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
503 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
531 U32 const mls = ms->cParams.minMatch;
533 switch(mls)
550 void const* src, size_t srcSize, U32 const mls, U32 const hasStep)
584 const size_t h = ZSTD_hashPtr(ip, hlog, mls);
624 hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2;
625 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
637 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
662 U32 const mls = ms->cParams.minMatch;
663 switch(mls)