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

  /hardware/libhardware/modules/input/evdev/
SwitchInputMapper.h 42 BitSet32 mSwitchValues;
43 BitSet32 mUpdatedSwitchMask;
MouseInputMapper.h 42 BitSet32 mButtonValues;
43 BitSet32 mUpdatedButtonMask;
  /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 368 BitSet32 idBits;
  /system/core/libutils/include/utils/
BitSet.h 32 struct BitSet32 {
35 inline BitSet32() : value(0UL) { }
36 explicit inline BitSet32(uint32_t value) : value(value) { }
134 inline bool operator== (const BitSet32& other) const { return value == other.value; }
135 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
136 inline BitSet32 operator& (const BitSet32& other) const {
137 return BitSet32(value & other.value);
139 inline BitSet32& operator&= (const BitSet32& other)
    [all...]
  /frameworks/native/services/inputflinger/
PointerControllerInterface.h 97 BitSet32 spotIdBits) = 0;
InputReader.h 801 BitSet32 hoveringIdBits, touchingIdBits;
837 BitSet32 hoveringIdBits, touchingIdBits;
    [all...]
InputReader.cpp     [all...]
InputDispatcher.h 165 BitSet32 pointerIds;
    [all...]
InputDispatcher.cpp 197 BitSet32 pointerIdBits;
    [all...]
EventHub.h 450 BitSet32 mControllerNumbers;
  /frameworks/native/libs/input/
VelocityControl.cpp 69 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
VelocityTracker.cpp 217 void VelocityTracker::clearPointers(BitSet32 idBits) {
218 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value);
228 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
255 for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) {
285 BitSet32 downIdBits;
310 BitSet32 idBits;
376 void LeastSquaresVelocityTrackerStrategy::clearPointers(BitSet32 idBits) {
377 BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value);
381 void LeastSquaresVelocityTrackerStrategy::addMovement(nsecs_t eventTime, BitSet32 idBits,
765 void IntegratingVelocityTrackerStrategy::clearPointers(BitSet32 idBits)
    [all...]
  /system/core/libutils/tests/
BitSet_test.cpp 29 BitSet32 b1;
30 BitSet32 b2;
42 BitSet32 tmp = b1 | b2;
58 BitSet32 tmp = b1 & b2;
77 BitSet32 tmp = b1 & b2;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 63 BitSet32 mCalculatedIdBits;
82 BitSet32 idBits(mVelocityTracker.getCurrentPointerIdBits());
  /frameworks/base/libs/input/
PointerController.h 105 const uint32_t* spotIdToIndex, BitSet32 spotIdBits);
PointerController.cpp 289 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
292 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
308 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
  /frameworks/base/services/core/jni/
com_android_server_tv_TvUinputBridge.cpp 56 static BitSet32 mtSlots;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer_hwc1.h 387 BitSet32 mAllocatedDisplayIDs;
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 121 virtual void setSpots(const PointerCoords*, const uint32_t*, BitSet32) {
    [all...]

Completed in 1011 milliseconds