Lines Matching refs:cell
54 uint32_t cell = bucket[bucket_index][cell_index]; in Remove() local
55 if (cell) { in Remove()
57 if (cell & bit_mask) { in Remove()
119 uint32_t cell = bucket[bucket_index][cell_index]; in Lookup() local
120 return (cell & (1u << bit_index)) != 0; in Lookup()
144 uint32_t cell = current_bucket[i]; in Iterate() local
145 uint32_t old_cell = cell; in Iterate()
146 uint32_t new_cell = cell; in Iterate()
147 while (cell) { in Iterate()
148 int bit_offset = base::bits::CountTrailingZeros32(cell); in Iterate()
156 cell ^= bit_mask; in Iterate()