Home
last modified time | relevance | path

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

/aosp14/system/core/libutils/include/utils/
H A DBitSet.h83 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function
85 static uint32_t firstMarkedBit(uint32_t value) { return clz_checked(value); } in firstMarkedBit() function
104 uint32_t n = firstMarkedBit(value); in clearFirstMarkedBit()
227 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function
229 static inline uint32_t firstMarkedBit(uint64_t value) { in firstMarkedBit() function
254 uint32_t n = firstMarkedBit(value); in clearFirstMarkedBit()
/aosp14/system/core/libutils/
H A DBitSet_fuzz.cpp40 [](T bs, uint32_t) -> void { bs.firstMarkedBit(); }, in getOperationsForType()
/aosp14/frameworks/base/libs/input/
H A DTouchSpotController.cpp91 uint32_t id = idBits.firstMarkedBit(); in setSpots()