Lines Matching refs:NotMask
73 int32_t NotMask; variable
77 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {} in Value()
84 return NotMask; in getNotMask()
88 Value &= ~Rhs.NotMask;
90 NotMask |= Rhs.NotMask;
95 Value &= ~Rhs.NotMask;
97 NotMask |= Rhs.NotMask;
102 Value &= ~Rhs.NotMask;
104 NotMask |= Rhs.NotMask;
109 Value &= ~Rhs.NotMask;
111 NotMask |= Rhs.NotMask;
115 IntWithNotMask operator-() const { return {-Value, NotMask}; }