Home
last modified time | relevance | path

Searched refs:hweight64 (Results 1 – 3 of 3) sorted by relevance

/tools/testing/radix-tree/linux/bitops/
Dhweight.h9 extern unsigned long hweight64(__u64 w);
/tools/include/asm-generic/bitops/
Dconst_hweight.h28 #define hweight64(w) (__builtin_constant_p(w) ? __const_hweight64(w) : __arch_hweight64(w)) macro
/tools/include/linux/
Dbitops.h50 return sizeof(w) == 4 ? hweight32(w) : hweight64(w); in hweight_long()