Home
last modified time | relevance | path

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

/rocksdb-6.9/table/block_based/
Dblock.h49 bytes_per_bit_pow_(0), in BlockReadAmpBitmap()
58 bytes_per_bit_pow_++; in BlockReadAmpBitmap()
62 size_t num_bits_needed = ((block_size - 1) >> bytes_per_bit_pow_) + 1; in BlockReadAmpBitmap()
80 (start_offset + (1 << bytes_per_bit_pow_) - rnd_ - 1) >> in Mark()
81 bytes_per_bit_pow_; in Mark()
84 (end_offset + (1 << bytes_per_bit_pow_) - rnd_) >> bytes_per_bit_pow_; in Mark()
92 << bytes_per_bit_pow_; in Mark()
104 uint32_t GetBytesPerBit() { return 1 << bytes_per_bit_pow_; } in GetBytesPerBit()
131 uint8_t bytes_per_bit_pow_; variable