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

  /system/core/include/utils/
BitSet.h 30 struct BitSet32 {
33 inline BitSet32() : value(0) { }
34 explicit inline BitSet32(uint32_t value) : value(value) { }
102 inline bool operator== (const BitSet32& other) const { return value == other.value; }
103 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
104 inline BitSet32 operator& (const BitSet32& other) const {
105 return BitSet32(value & other.value);
107 inline BitSet32& operator&= (const BitSet32& other)
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 76 void clearPointers(BitSet32 idBits);
83 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
102 inline BitSet32 getCurrentPointerIdBits() const { return mCurrentPointerIdBits; }
108 BitSet32 mCurrentPointerIdBits;
129 virtual void clearPointers(BitSet32 idBits) = 0;
130 virtual void addMovement(nsecs_t eventTime, BitSet32 idBits,
161 virtual void clearPointers(BitSet32 idBits);
162 virtual void addMovement(nsecs_t eventTime, BitSet32 idBits,
177 BitSet32 idBits;
204 virtual void clearPointers(BitSet32 idBits)
    [all...]
InputTransport.h 356 BitSet32 idBits;
  /system/core/libutils/tests/
BitSet_test.cpp 28 BitSet32 b1;
29 BitSet32 b2;
41 BitSet32 tmp = b1 | b2;
57 BitSet32 tmp = b1 & b2;
76 BitSet32 tmp = b1 & b2;
  /frameworks/native/libs/input/
VelocityControl.cpp 69 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
VelocityTracker.cpp 209 void VelocityTracker::clearPointers(BitSet32 idBits) {
210 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value);
220 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
247 for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) {
277 BitSet32 downIdBits;
302 BitSet32 idBits;
371 void LeastSquaresVelocityTrackerStrategy::clearPointers(BitSet32 idBits) {
372 BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value);
376 void LeastSquaresVelocityTrackerStrategy::addMovement(nsecs_t eventTime, BitSet32 idBits,
706 void IntegratingVelocityTrackerStrategy::clearPointers(BitSet32 idBits)
    [all...]
  /frameworks/base/services/input/
PointerController.h 104 BitSet32 spotIdBits) = 0;
170 const uint32_t* spotIdToIndex, BitSet32 spotIdBits);
InputReader.h 753 BitSet32 hoveringIdBits, touchingIdBits;
789 BitSet32 hoveringIdBits, touchingIdBits;
    [all...]
InputDispatcher.h 160 BitSet32 pointerIds;
    [all...]
InputReader.cpp     [all...]
PointerController.cpp 244 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
247 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
263 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
InputDispatcher.cpp 154 BitSet32 pointerIdBits;
    [all...]
EventHub.h 411 BitSet32 mControllerNumbers;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 62 BitSet32 mCalculatedIdBits;
81 BitSet32 idBits(mVelocityTracker.getCurrentPointerIdBits());
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 348 BitSet32 mAllocatedDisplayIDs;
  /frameworks/base/services/input/tests/
InputReader_test.cpp 117 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
    [all...]

Completed in 2218 milliseconds