Lines Matching defs:reducerValue
2223 * reduce table indexes by `reducerValue`, or squash to zero.
2229 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const preserveMark)
2235 U32 const reducerThreshold = reducerValue + ZSTD_WINDOW_START_INDEX;
2251 newVal = table[cellNb] - reducerValue;
2258 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue)
2260 ZSTD_reduceTable_internal(table, size, reducerValue, 0);
2263 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue)
2265 ZSTD_reduceTable_internal(table, size, reducerValue, 1);
2270 static void ZSTD_reduceIndex (ZSTD_matchState_t* ms, ZSTD_CCtx_params const* params, const U32 reducerValue)
2273 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue);
2279 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue);
2281 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue);
2286 ZSTD_reduceTable(ms->hashTable3, h3Size, reducerValue);