Searched refs:BitSet32 (Results 1 – 3 of 3) sorted by relevance
35 struct BitSet32 { struct38 inline BitSet32() : value(0UL) { } in BitSet32() argument39 explicit inline BitSet32(uint32_t value) : value(value) { } in BitSet32() function139 inline bool operator== (const BitSet32& other) const { return value == other.value; } argument140 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) {148 inline BitSet32 operator| (const BitSet32& other) const {149 return BitSet32(value | other.value);[all …]
46 static const std::vector<std::function<void(android::BitSet32, uint32_t)>> thirtyTwoBitOps =47 getOperationsForType<android::BitSet32>();51 void runOperationFor32Bit(android::BitSet32 bs, uint32_t bit, uint8_t operation) { in runOperationFor32Bit()59 android::BitSet32 b1 = android::BitSet32(thirty_two_base); in LLVMFuzzerTestOneInput()
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()