Home
last modified time | relevance | path

Searched refs:tagTable (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c858 PREFETCH_L1(tagTable + relRow); in ZSTD_row_prefetch()
860 PREFETCH_L1(tagTable + relRow + 32); in ZSTD_row_prefetch()
876 U16 const* const tagTable = ms->tagTable; in ZSTD_row_fillHashCache() local
884 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
898 U16 const* tagTable, BYTE const* base, in ZSTD_row_nextCachedHash() argument
904 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_nextCachedHash()
920 U16* const tagTable = ms->tagTable; in ZSTD_row_update_internalImpl() local
1137 U16* const tagTable = ms->tagTable; in ZSTD_RowFindBestMatch() local
1180 U16* const dmsTagTable = dms->tagTable; in ZSTD_RowFindBestMatch()
1192 …U32 const hash = ZSTD_row_nextCachedHash(hashCache, hashTable, tagTable, base, curr, hashLog, rowL… in ZSTD_RowFindBestMatch()
[all …]
H A Dzstd_compress.c1781 ms->tagTable = (U16*)ZSTD_cwksp_reserve_aligned(ws, tagTableSize); in ZSTD_reset_matchState()
1782 if (ms->tagTable) ZSTD_memset(ms->tagTable, 0, tagTableSize); in ZSTD_reset_matchState()
2148 ZSTD_memcpy(cctx->blockState.matchState.tagTable, in ZSTD_resetCCtx_byCopyingCDict()
2149 cdict->matchState.tagTable, in ZSTD_resetCCtx_byCopyingCDict()
4269 ZSTD_memset(ms->tagTable, 0, tagTableSize); in ZSTD_loadDictionaryContent()
H A Dzstd_compress_internal.h221 …U16* tagTable; /* For row-based matchFinder: A row-based table containin… member