Searched refs:BitSet32 (Results 1 – 2 of 2) sorted by relevance
32 struct BitSet32 { struct35 inline BitSet32() : value(0UL) { } in BitSet32() argument36 explicit inline BitSet32(uint32_t value) : value(value) { } in BitSet32() argument134 inline bool operator== (const BitSet32& other) const { return value == other.value; } argument135 inline bool operator!= (const BitSet32& other) const { return value != other.value; }136 inline BitSet32 operator& (const BitSet32& other) const {137 return BitSet32(value & other.value);139 inline BitSet32& operator&= (const BitSet32& other) {143 inline BitSet32 operator| (const BitSet32& other) const {144 return BitSet32(value | other.value);[all …]
29 BitSet32 b1;30 BitSet32 b2;42 BitSet32 tmp = b1 | b2; in TEST_F()58 BitSet32 tmp = b1 & b2; in TEST_F()77 BitSet32 tmp = b1 & b2; in TEST_F()