Home
last modified time | relevance | path

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

/system/core/libutils/include/utils/
DBitSet.h78 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function
80 static uint32_t firstMarkedBit(uint32_t value) { return clz_checked(value); } in firstMarkedBit() function
99 uint32_t n = firstMarkedBit(value); in clearFirstMarkedBit()
220 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function
222 static inline uint32_t firstMarkedBit(uint64_t value) { return __builtin_clzll(value); } in firstMarkedBit() function
241 uint64_t n = firstMarkedBit(value); in clearFirstMarkedBit()