Home
last modified time | relevance | path

Searched refs:lastMarkedBit (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/core/libutils/include/utils/
H A DBitSet.h95 inline uint32_t lastMarkedBit() const { return lastMarkedBit(value); } in lastMarkedBit() function
97 static inline uint32_t lastMarkedBit(uint32_t value) { return 31 - ctz_checked(value); } in lastMarkedBit() function
124 uint32_t n = lastMarkedBit(value); in clearLastMarkedBit()
243 inline uint32_t lastMarkedBit() const { return lastMarkedBit(value); } in lastMarkedBit() function
245 static inline uint32_t lastMarkedBit(uint64_t value) { in lastMarkedBit() function
274 uint32_t n = lastMarkedBit(value); in clearLastMarkedBit()
/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DInputTarget.cpp84 for (uint32_t i = pointerIds.firstMarkedBit(); i <= pointerIds.lastMarkedBit(); i++) { in getPointerInfoString()
/aosp12/system/core/libutils/
H A DBitSet_fuzz.cpp41 [](T bs, uint32_t) -> void { bs.lastMarkedBit(); }, in getOperationsForType()