Searched refs:reducerValue (Results 1 – 3 of 3) sorted by relevance
| /dragonfly/contrib/zstd/lib/compress/ |
| HD | zstd_ldm.c | 435 U32 const reducerValue) in ZSTD_ldm_reduceTable() argument 439 if (table[u].offset < reducerValue) table[u].offset = 0; in ZSTD_ldm_reduceTable() 440 else table[u].offset -= reducerValue; in ZSTD_ldm_reduceTable()
|
| HD | zstd_lazy.h | 32 void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! use…
|
| HD | zstd_compress.c | 2042 ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const pres… in ZSTD_reduceTable_internal() argument 2067 U32 const adder = (table[cellNb] == ZSTD_DUBT_UNSORTED_MARK) ? reducerValue : 0; in ZSTD_reduceTable_internal() 2070 if (table[cellNb] < reducerValue) table[cellNb] = 0; in ZSTD_reduceTable_internal() 2071 else table[cellNb] -= reducerValue; in ZSTD_reduceTable_internal() 2076 static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable() argument 2078 ZSTD_reduceTable_internal(table, size, reducerValue, 0); in ZSTD_reduceTable() 2081 static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) in ZSTD_reduceTable_btlazy2() argument 2083 ZSTD_reduceTable_internal(table, size, reducerValue, 1); in ZSTD_reduceTable_btlazy2() 2088 …id ZSTD_reduceIndex (ZSTD_matchState_t* ms, ZSTD_CCtx_params const* params, const U32 reducerValue) in ZSTD_reduceIndex() argument 2091 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); in ZSTD_reduceIndex() [all …]
|