Searched refs:clz_checked (Results 1 – 1 of 1) sorted by relevance
85 static uint32_t firstMarkedBit(uint32_t value) { return clz_checked(value); } in firstMarkedBit()91 static inline uint32_t firstUnmarkedBit(uint32_t value) { return clz_checked(~ value); } in firstUnmarkedBit()159 static inline uint32_t clz_checked(uint32_t value) { in clz_checked() function