Lines Matching refs:mls
22 U32 const mls = cParams->minMatch; in ZSTD_fillHashTable() local
33 size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls); in ZSTD_fillHashTable()
39 size_t const hash = ZSTD_hashPtr(ip + p, hBits, mls); in ZSTD_fillHashTable()
96 U32 const mls, U32 const hasStep) in ZSTD_compressBlock_fast_noDict_generic() argument
163 hash0 = ZSTD_hashPtr(ip0, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
164 hash1 = ZSTD_hashPtr(ip1, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
206 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
235 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic()
299 …hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could… in ZSTD_compressBlock_fast_noDict_generic()
300 hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base); in ZSTD_compressBlock_fast_noDict_generic()
307 hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base); in ZSTD_compressBlock_fast_noDict_generic()
317 #define ZSTD_GEN_FAST_FN(dictMode, mls, step) … argument
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; in ZSTD_compressBlock_fast() local
342 switch(mls) in ZSTD_compressBlock_fast()
355 switch(mls) in ZSTD_compressBlock_fast()
374 void const* src, size_t srcSize, U32 const mls, U32 const hasStep) in ZSTD_compressBlock_fast_dictMatchState_generic() argument
427 size_t const h = ZSTD_hashPtr(ip, hlog, mls); in ZSTD_compressBlock_fast_dictMatchState_generic()
444 size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls); in ZSTD_compressBlock_fast_dictMatchState_generic()
487 …hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; /* here because curr+2 could be > iend-… in ZSTD_compressBlock_fast_dictMatchState_generic()
488 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); in ZSTD_compressBlock_fast_dictMatchState_generic()
503 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; in ZSTD_compressBlock_fast_dictMatchState_generic()
531 U32 const mls = ms->cParams.minMatch; in ZSTD_compressBlock_fast_dictMatchState() local
533 switch(mls) in ZSTD_compressBlock_fast_dictMatchState()
550 void const* src, size_t srcSize, U32 const mls, U32 const hasStep) in ZSTD_compressBlock_fast_extDict_generic() argument
584 const size_t h = ZSTD_hashPtr(ip, hlog, mls); in ZSTD_compressBlock_fast_extDict_generic()
624 hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; in ZSTD_compressBlock_fast_extDict_generic()
625 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); in ZSTD_compressBlock_fast_extDict_generic()
637 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; in ZSTD_compressBlock_fast_extDict_generic()
662 U32 const mls = ms->cParams.minMatch; in ZSTD_compressBlock_fast_extDict() local
663 switch(mls) in ZSTD_compressBlock_fast_extDict()