Lines Matching refs:other
139 inline bool operator== (const BitSet32& other) const { return value == other.value; }
140 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
141 inline BitSet32 operator& (const BitSet32& other) const {
142 return BitSet32(value & other.value);
144 inline BitSet32& operator&= (const BitSet32& other) {
145 value &= other.value;
148 inline BitSet32 operator| (const BitSet32& other) const {
149 return BitSet32(value | other.value);
151 inline BitSet32& operator|= (const BitSet32& other) {
152 value |= other.value;
287 inline bool operator== (const BitSet64& other) const { return value == other.value; }
288 inline bool operator!= (const BitSet64& other) const { return value != other.value; }
289 inline BitSet64 operator& (const BitSet64& other) const {
290 return BitSet64(value & other.value);
292 inline BitSet64& operator&= (const BitSet64& other) {
293 value &= other.value;
296 inline BitSet64 operator| (const BitSet64& other) const {
297 return BitSet64(value | other.value);
299 inline BitSet64& operator|= (const BitSet64& other) {
300 value |= other.value;