Home
last modified time | relevance | path

Searched refs:chainTable (Results 1 – 5 of 5) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_lazy.c38 U32* const bt = ms->chainTable; in ZSTD_updateDUBT()
81 U32* const bt = ms->chainTable; in ZSTD_insertDUBT1()
190 U32* const dictBt = dms->chainTable; in ZSTD_DUBT_findBetterDictMatch()
260 U32* const bt = ms->chainTable; in ZSTD_DUBT_findBestMatch()
417 U32* const chainTable = ms->chainTable; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() local
482 chainTable[chainPos++] = i; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
553 PREFETCH_L1(&dms->chainTable[chainIndex]); in ZSTD_dedicatedDictSearch_lazy_search()
595 PREFETCH_L1(ddsBase + dms->chainTable[chainIndex + chainAttempt]); in ZSTD_dedicatedDictSearch_lazy_search()
601 matchIndex = dms->chainTable[chainIndex]; in ZSTD_dedicatedDictSearch_lazy_search()
627 #define NEXT_IN_CHAIN(d, mask) chainTable[(d) & (mask)]
[all …]
H A Dzstd_double_fast.c26 U32* const hashSmall = ms->chainTable; in ZSTD_fillDoubleHashTableForCDict()
64 U32* const hashSmall = ms->chainTable; in ZSTD_fillDoubleHashTableForCCtx()
113 U32* const hashSmall = ms->chainTable; in ZSTD_compressBlock_doubleFast_noDict_generic()
337 U32* const hashSmall = ms->chainTable; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
354 const U32* const dictHashSmall = dms->chainTable; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
619 U32* const hashSmall = ms->chainTable; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_opt.c453 U32* const bt = ms->chainTable; in ZSTD_insertBt1()
611 U32* const bt = ms->chainTable; in ZSTD_insertBtAndGetAllMatches()
781 const U32* const dmsBt = dms->chainTable; in ZSTD_insertBtAndGetAllMatches()
H A Dzstd_compress.c1947 ms->chainTable = (U32*)ZSTD_cwksp_reserve_table(ws, chainSize * sizeof(U32)); in ZSTD_reset_matchState()
2369 ZSTD_copyCDictTableIntoCCtx(cctx->blockState.matchState.chainTable, in ZSTD_resetCCtx_byCopyingCDict()
2370 cdict->matchState.chainTable, in ZSTD_resetCCtx_byCopyingCDict()
2485 ZSTD_memcpy(dstCCtx->blockState.matchState.chainTable, in ZSTD_copyCCtx_internal()
2486 srcCCtx->blockState.matchState.chainTable, in ZSTD_copyCCtx_internal()
2589 ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
2591 ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); in ZSTD_reduceIndex()
4914 assert(ms->chainTable != NULL); in ZSTD_loadDictionaryContent()
H A Dzstd_compress_internal.h290 U32* chainTable; member