Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.h24 void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! use…
H A Dzstd_ldm.c455 U32 const reducerValue) in ZSTD_ldm_reduceTable() argument
459 if (table[u].offset < reducerValue) table[u].offset = 0; in ZSTD_ldm_reduceTable()
460 else table[u].offset -= reducerValue; in ZSTD_ldm_reduceTable()
H A Dzstd_compress.c1251 if (table[cellNb] < reducerValue) table[cellNb] = 0; in ZSTD_reduceTable_internal()
1252 else table[cellNb] -= reducerValue; in ZSTD_reduceTable_internal()
1257 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable() argument
1259 ZSTD_reduceTable_internal(table, size, reducerValue, 0); in ZSTD_reduceTable()
1262 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable_btlazy2() argument
1264 ZSTD_reduceTable_internal(table, size, reducerValue, 1); in ZSTD_reduceTable_btlazy2()
1269 static void ZSTD_reduceIndex (ZSTD_CCtx* zc, const U32 reducerValue) in ZSTD_reduceIndex() argument
1273 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); in ZSTD_reduceIndex()
1279 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
1281 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
[all …]