Searched defs:BitSet32 (Results 1 - 1 of 1) sorted by relevance

/system/core/include/utils/
H A DBitSet.h30 struct BitSet32 { struct in namespace:android
33 inline BitSet32() : value(0) { } function in struct:android::BitSet32
34 explicit inline BitSet32(uint32_t value) : value(value) { } function in struct:android::BitSet32
102 inline bool operator== (const BitSet32& other) const { return value == other.value; }
103 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
104 inline BitSet32 operator& (const BitSet32& other) const {
105 return BitSet32(value & other.value);
107 inline BitSet32& operator&= (const BitSet32
[all...]

Completed in 34 milliseconds