Home
last modified time | relevance | path

Searched refs:__arch_hweight32 (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/arch/x86/include/asm/
H A Darch_hweight.h15 static __always_inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
28 return __arch_hweight32(w & 0xffff); in __arch_hweight16()
33 return __arch_hweight32(w & 0xff); in __arch_hweight8()
39 return __arch_hweight32((u32)w) + in __arch_hweight64()
40 __arch_hweight32((u32)(w >> 32)); in __arch_hweight64()
/openbmc/linux/arch/sparc/lib/
H A Dhweight.S33 ENTRY(__arch_hweight32)
37 ENDPROC(__arch_hweight32)
38 EXPORT_SYMBOL(__arch_hweight32)
40 .word __arch_hweight32
/openbmc/linux/arch/powerpc/lib/
H A Dhweight_64.S50 _GLOBAL(__arch_hweight32)
74 EXPORT_SYMBOL(__arch_hweight32)
/openbmc/linux/tools/include/asm-generic/bitops/
H A Darch_hweight.h7 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
H A Dconst_hweight.h28 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
/openbmc/linux/include/asm-generic/bitops/
H A Darch_hweight.h7 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
H A Dconst_hweight.h28 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
/openbmc/linux/arch/mips/include/asm/
H A Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
/openbmc/linux/arch/sparc/include/asm/
H A Dbitops_64.h47 unsigned int __arch_hweight32(unsigned int w);
/openbmc/linux/arch/alpha/include/asm/
H A Dbitops.h408 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
/openbmc/linux/arch/powerpc/include/asm/
H A Dbitops.h324 unsigned int __arch_hweight32(unsigned int w);
/openbmc/linux/arch/ia64/include/asm/
H A Dbitops.h433 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro