Lines Matching defs:NotMask
73 int32_t NotMask;
77 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {}
84 return NotMask;
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}; }