Home
last modified time | relevance | path

Searched refs:reducerValue (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/lib/zstd/compress/
H A Dzstd_ldm.c496 U32 const reducerValue) in ZSTD_ldm_reduceTable() argument
500 if (table[u].offset < reducerValue) table[u].offset = 0; in ZSTD_ldm_reduceTable()
501 else table[u].offset -= reducerValue; in ZSTD_ldm_reduceTable()
H A Dzstd_lazy.h30 void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! use…
H A Dzstd_compress.c2229 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const pres… in ZSTD_reduceTable_internal() argument
2235 U32 const reducerThreshold = reducerValue + ZSTD_WINDOW_START_INDEX; in ZSTD_reduceTable_internal()
2251 newVal = table[cellNb] - reducerValue; in ZSTD_reduceTable_internal()
2258 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable() argument
2260 ZSTD_reduceTable_internal(table, size, reducerValue, 0); in ZSTD_reduceTable()
2263 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable_btlazy2() argument
2265 ZSTD_reduceTable_internal(table, size, reducerValue, 1); in ZSTD_reduceTable_btlazy2()
2273 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); in ZSTD_reduceIndex()
2279 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
2281 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
[all …]