Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c852 …d ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const relRow, U32 const rowLog)… in ZSTD_row_prefetch() argument
853 PREFETCH_L1(hashTable + relRow); in ZSTD_row_prefetch()
855 PREFETCH_L1(hashTable + relRow + 16); in ZSTD_row_prefetch()
858 PREFETCH_L1(tagTable + relRow); in ZSTD_row_prefetch()
860 PREFETCH_L1(tagTable + relRow + 32); in ZSTD_row_prefetch()
863 …assert(ZSTD_isAligned(hashTable + relRow, 64)); /* prefetched hash row always 64-b… in ZSTD_row_prefetch()
928 U32 const relRow = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_update_internalImpl() local
929 U32* const row = hashTable + relRow; in ZSTD_row_update_internalImpl()
1193 U32 const relRow = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_RowFindBestMatch() local
1195 U32* const row = hashTable + relRow; in ZSTD_RowFindBestMatch()
[all …]