Lines Matching defs:cache
447 * in the hash cache bucket */
458 * into the cache or chainTable beyond `minChain`,
460 * chainTable into the cache. This lets us reach
503 /* Shift hash cache down 1. */
859 * Fill up the hash cache starting at idx, prefetching up to ZSTD_ROW_HASH_CACHE_SIZE entries,
885 * Returns the hash of base + idx, and replaces the hash in the hash cache with the byte at
888 FORCE_INLINE_TEMPLATE U32 ZSTD_row_nextCachedHash(U32* cache, U32 const* hashTable,
896 { U32 const hash = cache[idx & ZSTD_ROW_HASH_CACHE_MASK];
897 cache[idx & ZSTD_ROW_HASH_CACHE_MASK] = newHash;
947 /* Only skip positions when using hash cache, i.e.
974 ZSTD_row_update_internal(ms, ip, mls, rowLog, rowMask, 0 /* dont use cache */);