Home
last modified time | relevance | path

Searched refs:ZSTD_dictMatchState (Results 1 – 4 of 4) sorted by relevance

/external/zstd/lib/compress/
Dzstd_double_fast.c76 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 …]
Dzstd_opt.c546 const ZSTD_matchState_t* dms = dictMode == ZSTD_dictMatchState ? ms->dictMatchState : NULL; in ZSTD_insertBtAndGetAllMatches()
548 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches()
549 const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL; in ZSTD_insertBtAndGetAllMatches()
550 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches()
551 U32 const dmsHighLimit = dictMode == ZSTD_dictMatchState ? (U32)(dmsEnd - dmsBase) : 0; in ZSTD_insertBtAndGetAllMatches()
552 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0; in ZSTD_insertBtAndGetAllMatches()
553 … U32 const dmsIndexDelta = dictMode == ZSTD_dictMatchState ? windowLow - dmsHighLimit : 0; in ZSTD_insertBtAndGetAllMatches()
554 … U32 const dmsHashLog = dictMode == ZSTD_dictMatchState ? dmsCParams->hashLog : hashLog; in ZSTD_insertBtAndGetAllMatches()
555 …U32 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btL… in ZSTD_insertBtAndGetAllMatches()
556 U32 const dmsBtMask = dictMode == ZSTD_dictMatchState ? (1U << dmsBtLog) - 1 : 0; in ZSTD_insertBtAndGetAllMatches()
[all …]
Dzstd_lazy.c186 assert(dictMode == ZSTD_dictMatchState); in ZSTD_DUBT_findBetterDictMatch()
333 if (dictMode == ZSTD_dictMatchState) { in ZSTD_DUBT_findBestMatch()
360 if (dictMode == ZSTD_dictMatchState && nbCompares) { in ZSTD_DUBT_findBestMatch()
418 case 4 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS()
419 case 5 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS()
421 case 6 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); in ZSTD_BtFindBestMatch_dictMatchState_selectMLS()
748 } else if (dictMode == ZSTD_dictMatchState) { in ZSTD_HcFindBestMatch_generic()
809 case 4 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS()
810 case 5 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS()
812 case 6 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); in ZSTD_HcFindBestMatch_dictMatchState_selectMLS()
[all …]
Dzstd_compress_internal.h331 ZSTD_dictMatchState = 2, enumerator
817 … (ms->dictMatchState->dedicatedDictSearch ? ZSTD_dedicatedDictSearch : ZSTD_dictMatchState) : in ZSTD_matchState_dictMode()