Home
last modified time | relevance | path

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

/linux-6.15/lib/zstd/compress/
H A Dzstd_lazy.c819 if (rowLog >= 5) { in ZSTD_row_prefetch()
824 if (rowLog == 6) { in ZSTD_row_prefetch()
827 assert(rowLog == 4 || rowLog == 5 || rowLog == 6); in ZSTD_row_prefetch()
874 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_nextCachedHash()
952 const U32 rowMask = (1u << rowLog) - 1; in ZSTD_row_update()
955 DEBUGLOG(5, "ZSTD_row_update(), rowLog=%u", rowLog); in ZSTD_row_update()
1147 const U32 rowLog) in ZSTD_RowFindBestMatch() argument
1165 const U32 rowEntries = (1U << rowLog); in ZSTD_RowFindBestMatch()
1190 ddsExtraAttempts = cParams->searchLog > rowLog ? 1U << (cParams->searchLog - rowLog) : 0; in ZSTD_RowFindBestMatch()
1362 #define ZSTD_ROW_SEARCH_FN(dictMode, mls, rowLog) ZSTD_RowFindBestMatch_##dictMode##_##mls##_##rowL… argument
[all …]
H A Dzstd_compress.c1535 U32 const rowLog = BOUNDED(4, cPar.searchLog, 6); in ZSTD_adjustCParams_internal() local
1537 U32 const maxHashLog = maxRowHashLog + rowLog; in ZSTD_adjustCParams_internal()
1538 assert(cPar.hashLog >= rowLog); in ZSTD_adjustCParams_internal()
1973 U32 const rowLog = BOUNDED(4, cParams->searchLog, 6); in ZSTD_reset_matchState() local
1974 assert(cParams->hashLog >= rowLog); in ZSTD_reset_matchState()
1975 ms->rowHashLog = cParams->hashLog - rowLog; in ZSTD_reset_matchState()