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

  /system/core/libutils/tests/
BitSet_test.cpp 44 EXPECT_TRUE(tmp.hasBit(2) && tmp.hasBit(4));
50 EXPECT_TRUE(b1.hasBit(2) && b1.hasBit(4));
51 EXPECT_TRUE(b2.hasBit(4) && b2.count() == 1u);
66 EXPECT_TRUE(b1.hasBit(2) && b1.hasBit(4) && b1.hasBit(6));
79 EXPECT_TRUE(tmp.hasBit(6));
86 EXPECT_TRUE(b2.hasBit(3) && b2.hasBit(6) && b2.hasBit(9))
    [all...]
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_DefaultPlacement.h 24 bool hasBit(int32_t col, int32_t row);
BC_DefaultPlacement.cpp 55 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) {
76 if ((row < m_numrows) && (col >= 0) && !hasBit(col, row)) {
85 if ((row >= 0) && (col < m_numcols) && !hasBit(col, row)) {
94 if (!hasBit(m_numcols - 1, m_numrows - 1)) {
  /system/core/libutils/include/utils/
BitSet.h 60 inline bool hasBit(uint32_t n) const { return hasBit(value, n); }
62 static inline bool hasBit(uint32_t value, uint32_t n) { return value & valueForBit(n); }
202 inline bool hasBit(uint32_t n) const { return hasBit(value, n); }
204 static inline bool hasBit(uint64_t value, uint32_t n) { return value & valueForBit(n); }
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer_hwc1.cpp 435 !mAllocatedDisplayIDs.hasBit(id)) {
464 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
488 if (static_cast<uint32_t>(disp) >= MAX_HWC_DISPLAYS || !mAllocatedDisplayIDs.hasBit(disp)) {
538 if (uint32_t(disp)>31 || !mAllocatedDisplayIDs.hasBit(disp)) {
582 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
639 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)) {
742 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
748 if (!mHwc || uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
754 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id))
899 if (uint32_t(id)>31 || !mAllocatedDisplayIDs.hasBit(id)
    [all...]
  /hardware/libhardware/modules/input/evdev/
SwitchInputMapper.cpp 115 mSwitchValues.hasBit(bit), 0);
MouseInputMapper.cpp 155 mButtonValues.hasBit(bit), 0);
  /frameworks/native/libs/input/
VelocityTracker.cpp 215 if (mActivePointerId >= 0 && idBits.hasBit(mActivePointerId)) {
240 if (mActivePointerId < 0 || !idBits.hasBit(mActivePointerId)) {
574 if (!movement.idBits.hasBit(id)) {
720 if (mPointerIdBits.hasBit(id)) {
734 if (mPointerIdBits.hasBit(id)) {
855 if (!newestMovement.idBits.hasBit(id)) {
866 if (!nextOldestMovement.idBits.hasBit(id)
    [all...]
Input.cpp 92 if (axis < 0 || axis > 63 || !BitSet64::hasBit(bits, axis)){
104 if (!BitSet64::hasBit(bits, axis)) {
InputTransport.cpp 666 if (state.lastResample.idBits.hasBit(id)) {
711 if (!current->idBits.hasBit(id)) {
778 if (other->idBits.hasBit(id)
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 117 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) {
  /frameworks/base/libs/input/
PointerController.cpp 332 && !spotIdBits.hasBit(spot->id)) {
  /frameworks/native/services/inputflinger/
InputReader.cpp     [all...]
InputReader.h 841 return hoveringIdBits.hasBit(pointerProperties[pointerIndex].id);
845 return touchingIdBits.hasBit(pointerProperties[pointerIndex].id);
    [all...]
InputDispatcher.cpp 166 if (pointerIdBits.hasBit(id)) {
    [all...]
  /external/zxing/core/
core.jar 

Completed in 4438 milliseconds