Lines Matching refs:reducerValue
2302 * reduce table indexes by `reducerValue`, or squash to zero.
2308 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const preserveMark)
2314 U32 const reducerThreshold = reducerValue + ZSTD_WINDOW_START_INDEX;
2342 newVal = table[cellNb] - reducerValue;
2349 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue)
2351 ZSTD_reduceTable_internal(table, size, reducerValue, 0);
2354 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue)
2356 ZSTD_reduceTable_internal(table, size, reducerValue, 1);
2361 static void ZSTD_reduceIndex (ZSTD_matchState_t* ms, ZSTD_CCtx_params const* params, const U32 reducerValue)
2364 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue);
2370 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue);
2372 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue);
2377 ZSTD_reduceTable(ms->hashTable3, h3Size, reducerValue);