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

/arch/x86/include/asm/
H A Darch_hweight.h24 static inline unsigned int __arch_hweight32(unsigned int w) function
37 return __arch_hweight32(w & 0xffff);
42 return __arch_hweight32(w & 0xff);
50 return __arch_hweight32((u32)w) +
51 __arch_hweight32((u32)(w >> 32));
/arch/mips/include/asm/
H A Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) function
/arch/sparc/lib/
H A Dhweight.S29 ENTRY(__arch_hweight32) function
33 ENDPROC(__arch_hweight32)
35 .word __arch_hweight32
/arch/blackfin/include/asm/
H A Dbitops.h114 static inline unsigned int __arch_hweight32(unsigned int w) function
126 return __arch_hweight32((unsigned int)(w >> 32)) +
127 __arch_hweight32((unsigned int)w);
132 return __arch_hweight32(w & 0xffff);
137 return __arch_hweight32(w & 0xff);
/arch/powerpc/lib/
H A Dppc_ksyms.c37 EXPORT_SYMBOL(__arch_hweight32); variable
H A Dhweight_64.S58 _GLOBAL(__arch_hweight32)
/arch/sparc/kernel/
H A Dsparc_ksyms_64.c44 EXPORT_SYMBOL(__arch_hweight32); variable
/arch/sparc/include/asm/
H A Dbitops_64.h45 unsigned int __arch_hweight32(unsigned int w);
/arch/tile/include/asm/
H A Dbitops.h64 static inline unsigned int __arch_hweight32(unsigned int w) function
/arch/alpha/include/asm/
H A Dbitops.h410 static inline unsigned int __arch_hweight32(unsigned int w) function
/arch/ia64/include/asm/
H A Dbitops.h436 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro
/arch/powerpc/include/asm/
H A Dbitops.h269 unsigned int __arch_hweight32(unsigned int w);

Completed in 289 milliseconds