Home
last modified time | relevance | path

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

/system/core/libutils/include/utils/
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()
/system/core/libutils/
DBitSet_fuzz.cpp41 [](T bs, uint32_t) -> void { bs.lastMarkedBit(); }, in getOperationsForType()