Searched refs:BitSet32 (Results 1 – 2 of 2) sorted by relevance
30 struct BitSet32 { struct33 inline BitSet32() : value(0UL) { } in BitSet32() function34 explicit inline BitSet32(uint32_t value) : value(value) { } in BitSet32() function132 inline bool operator== (const BitSet32& other) const { return value == other.value; } argument133 inline bool operator!= (const BitSet32& other) const { return value != other.value; }134 inline BitSet32 operator& (const BitSet32& other) const {135 return BitSet32(value & other.value);137 inline BitSet32& operator&= (const BitSet32& other) {141 inline BitSet32 operator| (const BitSet32& other) const {142 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()