Searched refs:ZSTD_dictMatchState (Results 1 – 4 of 4) sorted by relevance
/linux-5.19.10/lib/zstd/compress/ |
D | zstd_double_fast.c | 76 dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 78 const U32* const dictHashLong = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 80 const U32* const dictHashSmall = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 82 const U32 dictStartIndex = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 84 const BYTE* const dictBase = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 86 const BYTE* const dictStart = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 88 const BYTE* const dictEnd = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 90 const U32 dictIndexDelta = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 93 const U32 dictHBitsL = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() 95 const U32 dictHBitsS = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() [all …]
|
D | zstd_opt.c | 558 const ZSTD_matchState_t* dms = dictMode == ZSTD_dictMatchState ? ms->dictMatchState : NULL; in ZSTD_insertBtAndGetAllMatches() 560 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches() 561 const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL; in ZSTD_insertBtAndGetAllMatches() 562 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches() 563 U32 const dmsHighLimit = dictMode == ZSTD_dictMatchState ? (U32)(dmsEnd - dmsBase) : 0; in ZSTD_insertBtAndGetAllMatches() 564 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0; in ZSTD_insertBtAndGetAllMatches() 565 … U32 const dmsIndexDelta = dictMode == ZSTD_dictMatchState ? windowLow - dmsHighLimit : 0; in ZSTD_insertBtAndGetAllMatches() 566 … U32 const dmsHashLog = dictMode == ZSTD_dictMatchState ? dmsCParams->hashLog : hashLog; in ZSTD_insertBtAndGetAllMatches() 567 …U32 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btL… in ZSTD_insertBtAndGetAllMatches() 568 U32 const dmsBtMask = dictMode == ZSTD_dictMatchState ? (1U << dmsBtLog) - 1 : 0; in ZSTD_insertBtAndGetAllMatches() [all …]
|
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() 419 case 4 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS() 420 case 5 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS() 422 case 6 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS() 750 } else if (dictMode == ZSTD_dictMatchState) { in ZSTD_HcFindBestMatch_generic() 811 case 4 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS() 812 case 5 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS() 814 case 6 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS() [all …]
|
D | zstd_compress_internal.h | 334 ZSTD_dictMatchState = 2, enumerator 800 … (ms->dictMatchState->dedicatedDictSearch ? ZSTD_dedicatedDictSearch : ZSTD_dictMatchState) : in ZSTD_matchState_dictMode()
|