Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c854 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()
904 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_nextCachedHash()
979 const U32 rowMask = (1u << rowLog) - 1; in ZSTD_row_update()
982 DEBUGLOG(5, "ZSTD_row_update(), rowLog=%u", rowLog); in ZSTD_row_update()
1134 const U32 rowLog) in ZSTD_RowFindBestMatch() argument
1152 const U32 rowEntries = (1U << rowLog); in ZSTD_RowFindBestMatch()
1174 ddsExtraAttempts = cParams->searchLog > rowLog ? 1U << (cParams->searchLog - rowLog) : 0; in ZSTD_RowFindBestMatch()
1528 ZSTD_row_fillHashCache(ms, base, rowLog, in ZSTD_compressBlock_lazy_generic()
[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()