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

/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;
/frameworks/base/libs/ui/
H A DInput.cpp270 uint64_t axisBit = 1LL << axis; local
271 if (!(bits & axisBit)) {
274 uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
283 uint64_t axisBit = 1LL << axis; local
284 uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
285 if (!(bits & axisBit)) {
294 bits |= axisBit;

Completed in 63 milliseconds