Home
last modified time | relevance | path

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

/openbmc/linux/lib/zstd/compress/
H A Dzstd_lazy.c826 FORCE_INLINE_TEMPLATE U32 ZSTD_row_nextIndex(BYTE* const tagRow, U32 const rowMask) { in ZSTD_row_nextIndex() argument
827 U32 const next = (*tagRow - 1) & rowMask; in ZSTD_row_nextIndex()
828 *tagRow = (BYTE)next; in ZSTD_row_nextIndex()
923 U32 const pos = ZSTD_row_nextIndex(tagRow, rowMask); in ZSTD_row_update_internalImpl()
926 ((BYTE*)tagRow)[pos + ZSTD_ROW_HASH_TAG_OFFSET] = hash & ZSTD_ROW_HASH_TAG_MASK; in ZSTD_row_update_internalImpl()
1004 const BYTE* const src = tagRow + ZSTD_ROW_HASH_TAG_OFFSET; in ZSTD_row_getMatchMask()
1187 BYTE* tagRow = (BYTE*)(tagTable + relRow); in ZSTD_RowFindBestMatch() local
1188 U32 const head = *tagRow & rowMask; in ZSTD_RowFindBestMatch()
1192 ZSTD_VecMask matches = ZSTD_row_getMatchMask(tagRow, (BYTE)tag, head, rowEntries); in ZSTD_RowFindBestMatch()
1212 U32 const pos = ZSTD_row_nextIndex(tagRow, rowMask); in ZSTD_RowFindBestMatch()
[all …]