Home | History | Annotate | Download | only in heap

Lines Matching refs:cell_

106       : cell_(cell), mask_(mask), data_only_(data_only) {}
108 inline CellType* cell() { return cell_; }
113 return cell_ == other.cell_ && mask_ == other.mask_;
117 inline void Set() { *cell_ |= mask_; }
118 inline bool Get() { return (*cell_ & mask_) != 0; }
119 inline void Clear() { *cell_ &= ~mask_; }
126 return MarkBit(cell_ + 1, 1, data_only_);
128 return MarkBit(cell_, new_mask, data_only_);
133 CellType* cell_;