Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/compress/
Dzstd_lazy.c843 … ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const relRow, U32 const rowLog) { in ZSTD_row_prefetch() argument
845 if (rowLog >= 5) { in ZSTD_row_prefetch()
850 if (rowLog == 6) { in ZSTD_row_prefetch()
853 assert(rowLog == 4 || rowLog == 5 || rowLog == 6); in ZSTD_row_prefetch()
855 …assert(ZSTD_isAligned(tagTable + relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on corre… in ZSTD_row_prefetch()
863 U32 const rowLog, U32 const mls, in ZSTD_row_fillHashCache() argument
874 U32 const row = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_fillHashCache()
875 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
891 U32 const rowLog, U32 const mls) in ZSTD_row_nextCachedHash() argument
894 U32 const row = (newHash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_nextCachedHash()
[all …]
Dzstd_compress.c1706 U32 const rowLog = BOUNDED(4, cParams->searchLog, 6); in ZSTD_reset_matchState() local
1707 assert(cParams->hashLog >= rowLog); in ZSTD_reset_matchState()
1708 ms->rowHashLog = cParams->hashLog - rowLog; in ZSTD_reset_matchState()