Searched refs:ZSTD_dictMatchState (Results 1 – 3 of 3) sorted by relevance
/linux-6.3-rc2/lib/zstd/compress/ |
A D | zstd_opt.c | 593 const ZSTD_matchState_t* dms = dictMode == ZSTD_dictMatchState ? ms->dictMatchState : NULL; in ZSTD_insertBtAndGetAllMatches() 595 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches() 596 const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL; in ZSTD_insertBtAndGetAllMatches() 597 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches() 599 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0; in ZSTD_insertBtAndGetAllMatches() 603 U32 const dmsBtMask = dictMode == ZSTD_dictMatchState ? (1U << dmsBtLog) - 1 : 0; in ZSTD_insertBtAndGetAllMatches() 626 const BYTE* const repMatch = dictMode == ZSTD_dictMatchState ? in ZSTD_insertBtAndGetAllMatches() 636 if (dictMode == ZSTD_dictMatchState in ZSTD_insertBtAndGetAllMatches() 742 if (dictMode == ZSTD_dictMatchState && nbCompares) { in ZSTD_insertBtAndGetAllMatches() 1420 return ZSTD_compressBlock_opt0(ms, seqStore, rep, src, srcSize, ZSTD_dictMatchState); in ZSTD_compressBlock_btopt_dictMatchState() [all …]
|
A D | zstd_lazy.c | 186 assert(dictMode == ZSTD_dictMatchState); in ZSTD_DUBT_findBetterDictMatch() 333 if (dictMode == ZSTD_dictMatchState) { in ZSTD_DUBT_findBestMatch() 361 if (dictMode == ZSTD_dictMatchState && nbCompares) { in ZSTD_DUBT_findBestMatch() 718 } else if (dictMode == ZSTD_dictMatchState) { in ZSTD_HcFindBestMatch() 1168 if (dictMode == ZSTD_dictMatchState) { in ZSTD_RowFindBestMatch() 1249 } else if (dictMode == ZSTD_dictMatchState) { in ZSTD_RowFindBestMatch() 1462 } else if (dictMode == ZSTD_dictMatchState) { in ZSTD_searchMax() 1496 const int isDMS = dictMode == ZSTD_dictMatchState; in ZSTD_compressBlock_lazy_generic() 1547 … const BYTE* repMatch = ((dictMode == ZSTD_dictMatchState || dictMode == ZSTD_dedicatedDictSearch) in ZSTD_compressBlock_lazy_generic() 1824 …ompressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 2, ZSTD_dictMatchState); in ZSTD_compressBlock_lazy2_dictMatchState_row() [all …]
|
A D | zstd_compress_internal.h | 427 ZSTD_dictMatchState = 2, enumerator 933 … (ms->dictMatchState->dedicatedDictSearch ? ZSTD_dedicatedDictSearch : ZSTD_dictMatchState) : in ZSTD_matchState_dictMode()
|
Completed in 18 milliseconds