Searched refs:indexToInsert (Results 1 – 1 of 1) sorted by relevance
/linux-6.12.1/lib/zstd/compress/ |
D | zstd_double_fast.c | 230 { U32 const indexToInsert = curr+2; in ZSTD_compressBlock_doubleFast_noDict_generic() local 231 hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert; in ZSTD_compressBlock_doubleFast_noDict_generic() 233 hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert; in ZSTD_compressBlock_doubleFast_noDict_generic() 432 { U32 const indexToInsert = curr+2; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local 433 hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 435 hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() 638 { U32 const indexToInsert = curr+2; in ZSTD_compressBlock_doubleFast_extDict_generic() local 639 hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert; in ZSTD_compressBlock_doubleFast_extDict_generic() 641 hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert; in ZSTD_compressBlock_doubleFast_extDict_generic()
|