Searched refs:rowMask (Results 1 – 1 of 1) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_lazy.c | 799 FORCE_INLINE_TEMPLATE U32 ZSTD_row_nextIndex(BYTE* const tagRow, U32 const rowMask) { in ZSTD_row_nextIndex() argument 800 U32 next = (*tagRow-1) & rowMask; in ZSTD_row_nextIndex() 801 next += (next == 0) ? rowMask : 0; /* skip first position */ in ZSTD_row_nextIndex() 889 U32 const rowMask, U32 const useCache) in ZSTD_row_update_internalImpl() argument 903 U32 const pos = ZSTD_row_nextIndex(tagRow, rowMask); in ZSTD_row_update_internalImpl() 919 U32 const rowMask, U32 const useCache) in ZSTD_row_update_internal() argument 936 ZSTD_row_update_internalImpl(ms, idx, bound, mls, rowLog, rowMask, useCache); in ZSTD_row_update_internal() 942 ZSTD_row_update_internalImpl(ms, idx, target, mls, rowLog, rowMask, useCache); in ZSTD_row_update_internal() 952 const U32 rowMask = (1u << rowLog) - 1; in ZSTD_row_update() local 956 ZSTD_row_update_internal(ms, ip, mls, rowLog, rowMask, 0 /* don't use cache */); in ZSTD_row_update() [all …]
|