17 lines
192 B
C
17 lines
192 B
C
#include <blue/core/bitop.h>
|
|
|
|
int b_popcountl(long v)
|
|
{
|
|
return __builtin_popcountl(v);
|
|
}
|
|
|
|
int b_ctzl(long v)
|
|
{
|
|
return __builtin_ctzl(v);
|
|
}
|
|
|
|
int b_clzl(long v)
|
|
{
|
|
return __builtin_clzl(v);
|
|
}
|