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