Home | History | Annotate | Download | only in base

Lines Matching defs:bits_

306   BitIteratorBase() : bits_(0u) { }
307 explicit BitIteratorBase(T bits) : bits_(bits) { }
310 DCHECK_NE(bits_, 0u);
312 bits_ &= ~(static_cast<T>(1u) << bit);
323 T bits_;
331 return lhs.bits_ == rhs.bits_;
345 DCHECK_NE(this->bits_, 0u);
346 return CTZ(this->bits_);
356 DCHECK_NE(this->bits_, 0u);
358 return std::numeric_limits<T>::digits - 1u - CLZ(this->bits_);