Searched refs:BitSet64 (Results 1 – 4 of 4) sorted by relevance
179 struct BitSet64 { struct182 inline BitSet64() : value(0ULL) { } in BitSet64() function183 explicit inline BitSet64(uint64_t value) : value(value) { } in BitSet64() function287 inline bool operator== (const BitSet64& other) const { return value == other.value; } argument289 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);299 inline BitSet64& operator|= (const BitSet64& other) {[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()
244 BitSet64 bits = in pointerCoordsToNative()245 BitSet64(env->GetLongField(pointerCoordsObj, gPointerCoordsClassInfo.mPackedAxisBits)); in pointerCoordsToNative()287 const BitSet64& axesBitsToCopy, jobject outPointerCoordsObj) { in pointerCoordsFromNative()288 BitSet64 bits = axesBitsToCopy; in pointerCoordsFromNative()304 outBits |= BitSet64::valueForBit(axis); in pointerCoordsFromNative()456 BitSet64 bits = BitSet64(rawPointerCoords->bits); in android_view_MotionEvent_nativeGetPointerCoords()