| 953 | #endif |
| 954 | } |
| 955 | static inline size_t mi_ctz(uintptr_t x) { |
| 956 | if (x==0) return MI_INTPTR_BITS; |
| 957 | #if (INTPTR_MAX == LONG_MAX) |
| 958 | return __builtin_ctzl(x); |
| 959 | #else |
| 960 | return __builtin_ctzll(x); |
| 961 | #endif |
| 962 | } |
| 963 | |
| 964 | #elif defined(_MSC_VER) |
| 965 |
no test coverage detected