Home | History | Annotate | Download | only in src

Lines Matching refs:mask_

129       : cell_(cell), mask_(mask), data_only_(data_only) { }
132 inline CellType mask() { return mask_; }
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_; }
147 CellType new_mask = mask_ << 1;
157 CellType mask_;