Searched refs:bitpos (Results 1 – 1 of 1) sorted by relevance
205 int bitpos = h >> (32 - 9); in AddHashPrepared() local206 data_at_cache_line[bitpos >> 3] |= (uint8_t{1} << (bitpos & 7)); in AddHashPrepared()331 int bitpos = h >> (32 - 9); in HashMayMatchPrepared() local332 if ((data_at_cache_line[bitpos >> 3] & (char(1) << (bitpos & 7))) == 0) { in HashMayMatchPrepared()362 const uint32_t bitpos = h % total_bits; in AddHash() local363 data[bitpos / 8] |= (1 << (bitpos % 8)); in AddHash()372 const uint32_t bitpos = h % total_bits; in HashMayMatch() local373 if ((data[bitpos / 8] & (1 << (bitpos % 8))) == 0) { in HashMayMatch()435 const uint32_t bitpos = h & ((1 << log2_cache_line_bits) - 1); in AddHash() local436 data_at_offset[bitpos / 8] |= (1 << (bitpos % 8)); in AddHash()[all …]