Searched refs:mask_ (Results 1 – 1 of 1) sorted by relevance
229 mask_(internal::ComputeMask<IntType>(bit_high_incl - bit_low + 1)) { in BitfieldRef()232 IntType get() const { return static_cast<IntType>((*value_ptr_ >> shift_) & mask_); } in get()236 ZX_DEBUG_ASSERT((field_val & ~mask_) == 0); in set()237 *value_ptr_ = static_cast<IntType>(*value_ptr_ & ~(mask_ << shift_)); in set()244 const IntType mask_; variable
Completed in 2 milliseconds