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

  /system/core/libutils/tests/
BitSet_test.cpp 43 EXPECT_TRUE(tmp.hasBit(2) && tmp.hasBit(4));
49 EXPECT_TRUE(b1.hasBit(2) && b1.hasBit(4));
50 EXPECT_TRUE(b2.hasBit(4) && b2.count() == 1u);
65 EXPECT_TRUE(b1.hasBit(2) && b1.hasBit(4) && b1.hasBit(6));
78 EXPECT_TRUE(tmp.hasBit(6));
85 EXPECT_TRUE(b2.hasBit(3) && b2.hasBit(6) && b2.hasBit(9))
    [all...]
  /system/core/include/utils/
BitSet.h 52 inline bool hasBit(uint32_t n) const { return value & valueForBit(n); }
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 399 !mAllocatedDisplayIDs.hasBit(id)) {
424 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
474 if (uint32_t(disp)>31 || !mAllocatedDisplayIDs.hasBit(disp)) {
514 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
566 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
665 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
671 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
677 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
808 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
820 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)
    [all...]
  /frameworks/native/libs/input/
VelocityTracker.cpp 213 if (mActivePointerId >= 0 && idBits.hasBit(mActivePointerId)) {
238 if (mActivePointerId < 0 || !idBits.hasBit(mActivePointerId)) {
571 if (!movement.idBits.hasBit(id)) {
717 if (mPointerIdBits.hasBit(id)) {
731 if (mPointerIdBits.hasBit(id)) {
852 if (!newestMovement.idBits.hasBit(id)) {
863 if (!nextOldestMovement.idBits.hasBit(id)
    [all...]
InputTransport.cpp 659 if (state.lastResample.idBits.hasBit(id)) {
704 if (!current->idBits.hasBit(id)) {
766 if (other->idBits.hasBit(id)
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 116 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) {
  /frameworks/base/services/input/
PointerController.cpp 283 && !spotIdBits.hasBit(spot->id)) {
InputReader.cpp     [all...]
InputReader.h 801 return hoveringIdBits.hasBit(pointerProperties[pointerIndex].id);
    [all...]
InputDispatcher.cpp 162 if (pointerIdBits.hasBit(id)) {
    [all...]

Completed in 3012 milliseconds