HomeSort by relevance Sort by last modified time
    Searched refs:BitSet64 (Results 1 - 6 of 6) sorted by null

  /system/core/include/utils/
BitSet.h 172 struct BitSet64 {
175 inline BitSet64() : value(0ULL) { }
176 explicit inline BitSet64(uint64_t value) : value(value) { }
272 inline bool operator== (const BitSet64& other) const { return value == other.value; }
273 inline bool operator!= (const BitSet64& other) const { return value != other.value; }
274 inline BitSet64 operator& (const BitSet64& other) const {
275 return BitSet64(value & other.value);
277 inline BitSet64& operator&= (const BitSet64& other)
    [all...]
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.h 89 android::BitSet64 mEnabled;
93 android::BitSet64 mPendingMask;
  /frameworks/native/libs/input/
Input.cpp 92 if (axis < 0 || axis > 63 || !BitSet64::hasBit(bits, axis)){
95 return values[BitSet64::getIndexOfBit(bits, axis)];
103 uint32_t index = BitSet64::getIndexOfBit(bits, axis);
104 if (!BitSet64::hasBit(bits, axis)) {
109 uint32_t count = BitSet64::count(bits);
114 BitSet64::markBit(bits, axis);
151 uint32_t count = BitSet64::count(bits);
165 uint32_t count = BitSet64::count(bits);
182 uint32_t count = BitSet64::count(bits);
193 uint32_t count = BitSet64::count(bits)
    [all...]
  /system/core/libutils/tests/
BitSet_test.cpp 150 BitSet64 b1;
151 BitSet64 b2;
163 BitSet64 tmp = b1 | b2;
179 BitSet64 tmp = b1 & b2;
198 BitSet64 tmp = b1 & b2;
  /frameworks/base/core/jni/
android_view_MotionEvent.cpp 214 BitSet64 bits =
215 BitSet64(env->GetLongField(pointerCoordsObj, gPointerCoordsClassInfo.mPackedAxisBits));
278 BitSet64 bits = BitSet64(rawPointerCoords->bits);
303 outBits |= BitSet64::valueForBit(axis);
    [all...]
  /frameworks/native/include/input/
Input.h 199 BitSet64::clear(bits);
203 return BitSet64::isEmpty(bits);

Completed in 102 milliseconds