Home
last modified time | relevance | path

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

/rocksdb-6.9/util/
Dbloom_impl.h205 int bitpos = h >> (32 - 9); in AddHashPrepared() local
206 data_at_cache_line[bitpos >> 3] |= (uint8_t{1} << (bitpos & 7)); in AddHashPrepared()
331 int bitpos = h >> (32 - 9); in HashMayMatchPrepared() local
332 if ((data_at_cache_line[bitpos >> 3] & (char(1) << (bitpos & 7))) == 0) { in HashMayMatchPrepared()
362 const uint32_t bitpos = h % total_bits; in AddHash() local
363 data[bitpos / 8] |= (1 << (bitpos % 8)); in AddHash()
372 const uint32_t bitpos = h % total_bits; in HashMayMatch() local
373 if ((data[bitpos / 8] & (1 << (bitpos % 8))) == 0) { in HashMayMatch()
435 const uint32_t bitpos = h & ((1 << log2_cache_line_bits) - 1); in AddHash() local
436 data_at_offset[bitpos / 8] |= (1 << (bitpos % 8)); in AddHash()
[all …]