Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_lazy.c817 FORCE_INLINE_TEMPLATE void ZSTD_row_prefetch(U32 const* hashTable, BYTE const* tagTable, U32 const … in ZSTD_row_prefetch() argument
823 PREFETCH_L1(tagTable + relRow); in ZSTD_row_prefetch()
825 PREFETCH_L1(tagTable + relRow + 32); in ZSTD_row_prefetch()
829 …assert(ZSTD_isAligned(tagTable + relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on corre… in ZSTD_row_prefetch()
843 BYTE const* const tagTable = ms->tagTable; in ZSTD_row_fillHashCache() local
851 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
867 BYTE const* tagTable, BYTE const* base, in ZSTD_row_nextCachedHash() argument
874 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_nextCachedHash()
892 BYTE* const tagTable = ms->tagTable; in ZSTD_row_update_internalImpl() local
898 …U32 const hash = useCache ? ZSTD_row_nextCachedHash(ms->hashCache, hashTable, tagTable, base, upda… in ZSTD_row_update_internalImpl()
[all …]
H A Dzstd_compress.c1964 ms->tagTable = (BYTE*) ZSTD_cwksp_reserve_aligned_init_once(ws, tagTableSize); in ZSTD_reset_matchState()
1968 ms->tagTable = (BYTE*) ZSTD_cwksp_reserve_aligned64(ws, tagTableSize); in ZSTD_reset_matchState()
1969 ZSTD_memset(ms->tagTable, 0, tagTableSize); in ZSTD_reset_matchState()
2376 ZSTD_memcpy(cctx->blockState.matchState.tagTable, in ZSTD_resetCCtx_byCopyingCDict()
2377 cdict->matchState.tagTable, in ZSTD_resetCCtx_byCopyingCDict()
4920 ZSTD_memset(ms->tagTable, 0, tagTableSize); in ZSTD_loadDictionaryContent()
H A Dzstd_compress_internal.h283 …BYTE* tagTable; /* For row-based matchFinder: A row-based table containin… member