Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_lazy.c817 …ZSTD_row_prefetch(U32 const* hashTable, BYTE const* tagTable, U32 const relRow, U32 const rowLog) { in ZSTD_row_prefetch() argument
819 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()
829 …assert(ZSTD_isAligned(tagTable + relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on corre… in ZSTD_row_prefetch()
839 U32 const rowLog, U32 const mls, in ZSTD_row_fillHashCache() argument
850 U32 const row = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_fillHashCache()
851 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
869 U32 const rowLog, U32 const mls, in ZSTD_row_nextCachedHash() argument
873 U32 const row = (newHash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_nextCachedHash()
[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()