Searched defs:firstMarkedBit (Results 1 – 1 of 1) sorted by relevance
76 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function78 static uint32_t firstMarkedBit(uint32_t value) { return clz_checked(value); } in firstMarkedBit() function218 inline uint32_t firstMarkedBit() const { return firstMarkedBit(value); } in firstMarkedBit() function220 static inline uint32_t firstMarkedBit(uint64_t value) { return __builtin_clzll(value); } in firstMarkedBit() function