Home | History | Annotate | Download | only in src

Lines Matching defs:cell_

129       : cell_(cell), mask_(mask), data_only_(data_only) { }
131 inline CellType* cell() { return cell_; }
136 return cell_ == other.cell_ && mask_ == other.mask_;
140 inline void Set() { *cell_ |= mask_; }
141 inline bool Get() { return (*cell_ & mask_) != 0; }
142 inline void Clear() { *cell_ &= ~mask_; }
149 return MarkBit(cell_ + 1, 1, data_only_);
151 return MarkBit(cell_, new_mask, data_only_);
156 CellType* cell_;