Home
last modified time | relevance | path

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

/rocksdb-6.9/util/
Dbloom_impl.h428 const int log2_cache_line_bits = log2_cache_line_bytes + 3; in AddHash() local
435 const uint32_t bitpos = h & ((1 << log2_cache_line_bits) - 1); in AddHash()
438 h = (h >> log2_cache_line_bits) | (h << (32 - log2_cache_line_bits)); in AddHash()
465 const int log2_cache_line_bits = log2_cache_line_bytes + 3; in HashMayMatchPrepared() local
470 const uint32_t bitpos = h & ((1 << log2_cache_line_bits) - 1); in HashMayMatchPrepared()
475 h = (h >> log2_cache_line_bits) | (h << (32 - log2_cache_line_bits)); in HashMayMatchPrepared()