Home
last modified time | relevance | path

Searched refs:BitSet64 (Results 1 – 3 of 3) sorted by relevance

/system/core/libutils/include/utils/
DBitSet.h179 struct BitSet64 { struct
182 inline BitSet64() : value(0ULL) { } in BitSet64() argument
183 explicit inline BitSet64(uint64_t value) : value(value) { } in BitSet64() argument
287 inline bool operator== (const BitSet64& other) const { return value == other.value; } argument
288 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 …]
/system/core/libutils/
DBitSet_fuzz.cpp48 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()
DBitSet_test.cpp151 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()