Home
last modified time | relevance | path

Searched defs: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
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