Searched refs:BitSet64 (Results 1 – 3 of 3) sorted by relevance
179 struct BitSet64 { struct182 inline BitSet64() : value(0ULL) { } in BitSet64() argument183 explicit inline BitSet64(uint64_t value) : value(value) { } in BitSet64() argument287 inline bool operator== (const BitSet64& other) const { return value == other.value; } argument288 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) {296 inline BitSet64 operator| (const BitSet64& other) const {297 return BitSet64(value | other.value);[all …]
48 static const std::vector<std::function<void(android::BitSet64, uint32_t)>> sixtyFourBitOps =49 getOperationsForType<android::BitSet64>();60 android::BitSet64 b2 = android::BitSet64(sixty_four_base); in LLVMFuzzerTestOneInput()
151 BitSet64 b1;152 BitSet64 b2;164 BitSet64 tmp = b1 | b2; in TEST_F()180 BitSet64 tmp = b1 & b2; in TEST_F()199 BitSet64 tmp = b1 & b2; in TEST_F()