Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c852 … ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const relRow, U32 const rowLog) { in ZSTD_row_prefetch() argument
854 if (rowLog >= 5) { in ZSTD_row_prefetch()
859 if (rowLog == 6) { in ZSTD_row_prefetch()
862 assert(rowLog == 4 || rowLog == 5 || rowLog == 6); in ZSTD_row_prefetch()
864 …assert(ZSTD_isAligned(tagTable + relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on corre… in ZSTD_row_prefetch()
872 U32 const rowLog, U32 const mls, in ZSTD_row_fillHashCache() argument
883 U32 const row = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_fillHashCache()
884 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
900 U32 const rowLog, U32 const mls) in ZSTD_row_nextCachedHash() argument
903 U32 const row = (newHash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_nextCachedHash()
[all …]
H A Dzstd_compress.c1785 U32 const rowLog = BOUNDED(4, cParams->searchLog, 6); in ZSTD_reset_matchState() local
1786 assert(cParams->hashLog >= rowLog); in ZSTD_reset_matchState()
1787 ms->rowHashLog = cParams->hashLog - rowLog; in ZSTD_reset_matchState()