2026-03-16 10:35:43 +00:00
|
|
|
#include <fx/core/bitop.h>
|
2024-11-14 18:32:58 +00:00
|
|
|
|
2026-03-16 10:35:43 +00:00
|
|
|
int fx_popcountl(long v)
|
2024-11-14 18:32:58 +00:00
|
|
|
{
|
|
|
|
|
return __builtin_popcountl(v);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 10:35:43 +00:00
|
|
|
int fx_ctzl(long v)
|
2024-11-14 18:32:58 +00:00
|
|
|
{
|
|
|
|
|
return __builtin_ctzl(v);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 10:35:43 +00:00
|
|
|
int fx_clzl(long v)
|
2024-11-14 18:32:58 +00:00
|
|
|
{
|
|
|
|
|
return __builtin_clzl(v);
|
|
|
|
|
}
|