Searched refs:dictMode (Results 1 – 6 of 6) sorted by relevance
/linux-6.3-rc2/lib/zstd/compress/ |
A D | zstd_lazy.c | 104 if ( (dictMode != ZSTD_extDict) in ZSTD_insertDUBT1() 185 (void)dictMode; in ZSTD_DUBT_findBetterDictMatch() 365 mls, dictMode); in ZSTD_DUBT_findBestMatch() 1320 #define ZSTD_BT_SEARCH_FN(dictMode, mls) ZSTD_BtFindBestMatch_##dictMode##_##mls argument 1321 #define ZSTD_HC_SEARCH_FN(dictMode, mls) ZSTD_HcFindBestMatch_##dictMode##_##mls argument 1322 #define ZSTD_ROW_SEARCH_FN(dictMode, mls, rowLog) ZSTD_RowFindBestMatch_##dictMode##_##mls##_##rowL… argument 1360 X(dictMode, mls, 6) 1370 X(dictMode, 6) 1456 ZSTD_dictMode_e const dictMode) in ZSTD_searchMax() argument 1458 if (dictMode == ZSTD_noDict) { in ZSTD_searchMax() [all …]
|
A D | zstd_opt.c | 539 idx, target, dictMode); in ZSTD_updateTree_internal() 630 if ( dictMode == ZSTD_extDict in ZSTD_insertBtAndGetAllMatches() 695 …if ((dictMode == ZSTD_noDict) || (dictMode == ZSTD_dictMatchState) || (matchIndex+matchLength >= d… in ZSTD_insertBtAndGetAllMatches() 804 const ZSTD_dictMode_e dictMode, in ZSTD_btGetAllMatches_internal() argument 815 #define ZSTD_BT_GET_ALL_MATCHES_FN(dictMode, mls) ZSTD_btGetAllMatches_##dictMode##_##mls argument 833 #define GEN_ZSTD_BT_GET_ALL_MATCHES(dictMode) \ argument 834 GEN_ZSTD_BT_GET_ALL_MATCHES_(dictMode, 3) \ 835 GEN_ZSTD_BT_GET_ALL_MATCHES_(dictMode, 4) \ 836 GEN_ZSTD_BT_GET_ALL_MATCHES_(dictMode, 5) \ 837 GEN_ZSTD_BT_GET_ALL_MATCHES_(dictMode, 6) [all …]
|
A D | zstd_fast.c | 317 #define ZSTD_GEN_FAST_FN(dictMode, mls, step) … argument 318 …static size_t ZSTD_compressBlock_fast_##dictMode##_##mls##_##step( … 322 … return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
|
A D | zstd_double_fast.c | 471 #define ZSTD_GEN_DFAST_FN(dictMode, mls) … argument 472 …static size_t ZSTD_compressBlock_doubleFast_##dictMode##_##mls( … 476 … return ZSTD_compressBlock_doubleFast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls); \
|
A D | zstd_compress.c | 2633 …lockCompressor(ZSTD_strategy strat, ZSTD_paramSwitch_e useRowMatchFinder, ZSTD_dictMode_e dictMode) in ZSTD_selectBlockCompressor() argument 2681 …DEBUGLOG(4, "Selected block compressor: dictMode=%d strat=%d rowMatchfinder=%d", (int)dictMode, (i… in ZSTD_selectBlockCompressor() 2699 selectedCompressor = rowBasedBlockCompressors[(int)dictMode][(int)strat - (int)ZSTD_greedy]; in ZSTD_selectBlockCompressor() 2701 selectedCompressor = blockCompressor[(int)dictMode][(int)strat]; in ZSTD_selectBlockCompressor() 2758 { ZSTD_dictMode_e const dictMode = ZSTD_matchState_dictMode(ms); in ZSTD_buildSeqStore() local 2794 dictMode); in ZSTD_buildSeqStore()
|
A D | zstd_compress_internal.h | 454 …ckCompressor(ZSTD_strategy strat, ZSTD_paramSwitch_e rowMatchfinderMode, ZSTD_dictMode_e dictMode);
|
Completed in 36 milliseconds