Lines Matching refs:reducerValue
12896 void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! use…
14938 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const pres… in ZSTD_reduceTable_internal() argument
14963 U32 const adder = (table[cellNb] == ZSTD_DUBT_UNSORTED_MARK) ? reducerValue : 0; in ZSTD_reduceTable_internal()
14966 if (table[cellNb] < reducerValue) table[cellNb] = 0; in ZSTD_reduceTable_internal()
14967 else table[cellNb] -= reducerValue; in ZSTD_reduceTable_internal()
14972 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable() argument
14974 ZSTD_reduceTable_internal(table, size, reducerValue, 0); in ZSTD_reduceTable()
14977 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable_btlazy2() argument
14979 ZSTD_reduceTable_internal(table, size, reducerValue, 1); in ZSTD_reduceTable_btlazy2()
14984 …id ZSTD_reduceIndex (ZSTD_matchState_t* ms, ZSTD_CCtx_params const* params, const U32 reducerValue) in ZSTD_reduceIndex() argument
14987 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); in ZSTD_reduceIndex()
14993 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
14995 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
15000 ZSTD_reduceTable(ms->hashTable3, h3Size, reducerValue); in ZSTD_reduceIndex()
19943 U32 const reducerValue) in ZSTD_ldm_reduceTable() argument
19947 if (table[u].offset < reducerValue) table[u].offset = 0; in ZSTD_ldm_reduceTable()
19948 else table[u].offset -= reducerValue; in ZSTD_ldm_reduceTable()