Home
last modified time | relevance | path

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

/system/core/libutils/include/utils/
DBitSet.h90 inline uint32_t lastMarkedBit() const { return lastMarkedBit(value); } in lastMarkedBit() function
92 static inline uint32_t lastMarkedBit(uint32_t value) { return 31 - ctz_checked(value); } in lastMarkedBit() function
119 uint32_t n = lastMarkedBit(value); in clearLastMarkedBit()
232 inline uint32_t lastMarkedBit() const { return lastMarkedBit(value); } in lastMarkedBit() function
234 static inline uint32_t lastMarkedBit(uint64_t value) { return 63 - __builtin_ctzll(value); } in lastMarkedBit() function
261 uint64_t n = lastMarkedBit(value); in clearLastMarkedBit()