btstack_clz() function
Returns the number of leading 0-bits in x, starting at the most significant bit position. If x is 0, the result is undefined.
Syntax
uint8_t btstack_clz(uint32_t value); Return value
number of leading 0-bits
Notes
maps to __builtin_clz for gcc and clang