Lines Matching refs:bit_index
60 int bucket_index, cell_index, bit_index; in Insert() local
61 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index); in Insert()
74 uint32_t mask = 1u << bit_index; in Insert()
83 int bucket_index, cell_index, bit_index; in Contains() local
84 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index); in Contains()
87 return (LoadCell(&bucket[cell_index]) & (1u << bit_index)) != 0; in Contains()
92 int bucket_index, cell_index, bit_index; in Remove() local
93 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index); in Remove()
97 uint32_t bit_mask = 1u << bit_index; in Remove()
172 int bucket_index, cell_index, bit_index; in Lookup() local
173 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index); in Lookup()
176 return (LoadCell(&bucket[cell_index]) & (1u << bit_index)) != 0; in Lookup()
372 int* bit_index) { in SlotToIndices() argument
378 *bit_index = slot & (kBitsPerCell - 1); in SlotToIndices()