WARNING: undefined if a = 0 */
| 8 | |
| 9 | /* WARNING: undefined if a = 0 */ |
| 10 | static inline int clz64(uint64_t a) |
| 11 | { |
| 12 | return __builtin_clzll(a); |
| 13 | } |
| 14 | |
| 15 | /* WARNING: undefined if a = 0 */ |
| 16 | static inline int ctz32(unsigned int a) |
nothing calls this directly
no outgoing calls
no test coverage detected