WARNING: undefined if a = 0 */
| 2 | |
| 3 | /* WARNING: undefined if a = 0 */ |
| 4 | static inline int clz32(unsigned int a) |
| 5 | { |
| 6 | return __builtin_clz(a); |
| 7 | } |
| 8 | |
| 9 | /* WARNING: undefined if a = 0 */ |
| 10 | static inline int clz64(uint64_t a) |
nothing calls this directly
no outgoing calls
no test coverage detected