Lines Matching refs:hlog

54     U32 const hlog = cParams->hashLog;  in ZSTD_compressBlock_fast_generic()  local
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()
213 U32 const hlog = cParams->hashLog; in ZSTD_compressBlock_fast_dictMatchState_generic() local
260 size_t const h = ZSTD_hashPtr(ip, hlog, 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()
381 U32 const hlog = cParams->hashLog; in ZSTD_compressBlock_fast_extDict_generic() local
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()