Home
last modified time | relevance | path

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

/arch/x86/include/asm/
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()
/arch/sparc/lib/
Dhweight.S33 ENTRY(__arch_hweight32)
37 ENDPROC(__arch_hweight32)
38 EXPORT_SYMBOL(__arch_hweight32)
40 .word __arch_hweight32
/arch/powerpc/lib/
Dhweight_64.S50 _GLOBAL(__arch_hweight32)
74 EXPORT_SYMBOL(__arch_hweight32)
/arch/mips/include/asm/
Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
/arch/sparc/include/asm/
Dbitops_64.h47 unsigned int __arch_hweight32(unsigned int w);
/arch/powerpc/include/asm/
Dbitops.h233 unsigned int __arch_hweight32(unsigned int w);
/arch/alpha/include/asm/
Dbitops.h411 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
/arch/ia64/include/asm/
Dbitops.h436 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro