Searched defs:axisBit (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/input/
H A DInput.cpp165 uint64_t axisBit = 1LL << axis; local
166 if (!(bits & axisBit)) {
169 uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
178 uint64_t axisBit = 1LL << axis; local
179 uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
180 if (!(bits & axisBit)) {
189 bits |= axisBit;
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp224 uint64_t axisBit = 1LL << axis; local
225 bits &= ~axisBit;
305 uint64_t axisBit = 1LL << axis; local
306 remainingBits &= ~axisBit;
307 outBits |= axisBit;

Completed in 37 milliseconds