Lines Matching refs:rowLog

1128 … ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const relRow, U32 const rowLog) {  in ZSTD_row_prefetch()  argument
1130 if (rowLog == 5) { in ZSTD_row_prefetch()
1134 assert(rowLog == 4 || rowLog == 5); in ZSTD_row_prefetch()
1136 …assert(ZSTD_isAligned(tagTable + relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on a mul… in ZSTD_row_prefetch()
1144 U32 const rowLog, U32 const mls, in ZSTD_row_fillHashCache() argument
1155 U32 const row = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_fillHashCache()
1156 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_fillHashCache()
1172 U32 const rowLog, U32 const mls) in ZSTD_row_nextCachedHash() argument
1175 U32 const row = (newHash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_nextCachedHash()
1176 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog); in ZSTD_row_nextCachedHash()
1188 U32 const mls, U32 const rowLog, in ZSTD_row_update_internal() argument
1200 …ache ? ZSTD_row_nextCachedHash(ms->hashCache, hashTable, tagTable, base, idx, hashLog, rowLog, mls) in ZSTD_row_update_internal()
1202 U32 const relRow = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_row_update_internal()
1220 const U32 rowLog = ms->cParams.searchLog < 5 ? 4 : 5; in ZSTD_row_update() local
1221 const U32 rowMask = (1u << rowLog) - 1; in ZSTD_row_update()
1224 DEBUGLOG(5, "ZSTD_row_update(), rowLog=%u", rowLog); in ZSTD_row_update()
1225 ZSTD_row_update_internal(ms, ip, mls, rowLog, rowMask, 0 /* dont use cache */); in ZSTD_row_update()
1271 const U32 rowLog) in ZSTD_RowFindBestMatch_generic() argument
1289 const U32 rowEntries = (1U << rowLog); in ZSTD_RowFindBestMatch_generic()
1291 …const U32 cappedSearchLog = MIN(cParams->searchLog, rowLog); /* nb of searches is capped at nb ent… in ZSTD_RowFindBestMatch_generic()
1309 ddsExtraAttempts = cParams->searchLog > rowLog ? 1U << (cParams->searchLog - rowLog) : 0; in ZSTD_RowFindBestMatch_generic()
1317 U32 const dmsRelRow = (dmsHash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_RowFindBestMatch_generic()
1321 ZSTD_row_prefetch(dmsHashTable, dmsTagTable, dmsRelRow, rowLog); in ZSTD_RowFindBestMatch_generic()
1325 ZSTD_row_update_internal(ms, ip, mls, rowLog, rowMask, 1 /* useCache */); in ZSTD_RowFindBestMatch_generic()
1327 …t hash = ZSTD_row_nextCachedHash(hashCache, hashTable, tagTable, base, curr, hashLog, rowLog, mls); in ZSTD_RowFindBestMatch_generic()
1328 U32 const relRow = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; in ZSTD_RowFindBestMatch_generic()
1443 const ZSTD_dictMode_e dictMode, size_t* offsetPtr, const U32 rowLog) in ZSTD_RowFindBestMatch_selectMLS() argument
1448 case 4 : return ZSTD_RowFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, dictMode, rowLog); in ZSTD_RowFindBestMatch_selectMLS()
1449 case 5 : return ZSTD_RowFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, dictMode, rowLog); in ZSTD_RowFindBestMatch_selectMLS()
1451 case 6 : return ZSTD_RowFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, dictMode, rowLog); in ZSTD_RowFindBestMatch_selectMLS()
1533 const U32 rowLog = ms->cParams.searchLog < 5 ? 4 : 5; in ZSTD_compressBlock_lazy_generic() local
1603 ZSTD_row_fillHashCache(ms, base, rowLog, in ZSTD_compressBlock_lazy_generic()
1957 const U32 rowLog = ms->cParams.searchLog < 5 ? 4 : 5; in ZSTD_compressBlock_lazy_extDict_generic() local
1975 ZSTD_row_fillHashCache(ms, base, rowLog, in ZSTD_compressBlock_lazy_extDict_generic()