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()
50 U32 const mls) in ZSTD_compressBlock_fast_generic() argument
93 size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls); in ZSTD_compressBlock_fast_generic()
95 size_t const h1 = ZSTD_hashPtr(ip1, hlog, mls); in ZSTD_compressBlock_fast_generic()
160 …hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could… in ZSTD_compressBlock_fast_generic()
161 hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base); in ZSTD_compressBlock_fast_generic()
168 hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base); in ZSTD_compressBlock_fast_generic()
190 U32 const mls = ms->cParams.minMatch; in ZSTD_compressBlock_fast() local
192 switch(mls) in ZSTD_compressBlock_fast()
209 void const* src, size_t srcSize, U32 const mls) in ZSTD_compressBlock_fast_dictMatchState_generic() argument
260 size_t const h = ZSTD_hashPtr(ip, hlog, mls); in ZSTD_compressBlock_fast_dictMatchState_generic()
277 size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls); in ZSTD_compressBlock_fast_dictMatchState_generic()
320 …hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; /* here because curr+2 could be > iend-… in ZSTD_compressBlock_fast_dictMatchState_generic()
321 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); in ZSTD_compressBlock_fast_dictMatchState_generic()
336 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; in ZSTD_compressBlock_fast_dictMatchState_generic()
358 U32 const mls = ms->cParams.minMatch; in ZSTD_compressBlock_fast_dictMatchState() local
360 switch(mls) in ZSTD_compressBlock_fast_dictMatchState()
377 void const* src, size_t srcSize, U32 const mls) in ZSTD_compressBlock_fast_extDict_generic() argument
405 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, mls); in ZSTD_compressBlock_fast_extDict_generic()
409 const size_t h = ZSTD_hashPtr(ip, hlog, mls); in ZSTD_compressBlock_fast_extDict_generic()
449 hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; in ZSTD_compressBlock_fast_extDict_generic()
450 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); in ZSTD_compressBlock_fast_extDict_generic()
462 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; in ZSTD_compressBlock_fast_extDict_generic()
483 U32 const mls = ms->cParams.minMatch; in ZSTD_compressBlock_fast_extDict() local
484 switch(mls) in ZSTD_compressBlock_fast_extDict()