OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tagTable
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_lazy.c
795
* Returns the next index to insert at within a
tagTable
row, and updates the "head"
814
* Performs prefetching for the hashTable and
tagTable
at a given row.
816
FORCE_INLINE_TEMPLATE void ZSTD_row_prefetch(U32 const* hashTable, BYTE const*
tagTable
, U32 const relRow, U32 const rowLog) {
822
PREFETCH_L1(
tagTable
+ relRow);
824
PREFETCH_L1(
tagTable
+ relRow + 32);
828
assert(ZSTD_isAligned(
tagTable
+ relRow, (size_t)1 << rowLog)); /* prefetched tagRow sits on correct multiple of bytes (32,64,128) */
842
BYTE const* const
tagTable
= ms->
tagTable
;
850
ZSTD_row_prefetch(hashTable,
tagTable
, row, rowLog);
861
* base + idx + ZSTD_ROW_HASH_CACHE_SIZE. Also prefetches the appropriate rows from hashTable and
tagTable
[
all
...]
zstd_compress_internal.h
285
BYTE*
tagTable
; /* For row-based matchFinder: A row-based table containing the hashes and head index. */
Completed in 40 milliseconds
Indexes created Sun Jun 21 00:25:28 UTC 2026