Lines Matching defs:cell
19 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {}
123 // Retrieves the cell containing the provided markbit index.
138 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2);
139 return MarkBit(cell, mask);
150 // Clears bits in the given cell. The mask specifies bits to clear: if a
151 // bit is set in the mask then the corresponding bit is cleared in the cell.
154 // Sets bits in the given cell. The mask specifies bits to set: if a
155 // bit is set in the mask then the corresponding bit is set in the cell.
182 // Clear all bits in the cell range [start_cell_index, end_cell_index). If the
187 // Set all bits in the cell range [start_cell_index, end_cell_index). If the
284 // cell with 1s.
288 // Finally, fill all bits until the end address in the last cell with 1s.
315 // cell with 0s.
319 // Finally, set all bits until the end address in the last cell with 0s.