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

/linux-4.4.14/arch/x86/include/asm/
H A Darch_hweight.h24 static __always_inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
37 return __arch_hweight32(w & 0xffff); __arch_hweight16()
42 return __arch_hweight32(w & 0xff); __arch_hweight8()
48 return __arch_hweight32((u32)w) + __arch_hweight64()
49 __arch_hweight32((u32)(w >> 32)); __arch_hweight64()
/linux-4.4.14/include/asm-generic/bitops/
H A Darch_hweight.h6 static inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
H A Dconst_hweight.h27 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
/linux-4.4.14/arch/powerpc/lib/
H A Dppc_ksyms.c33 EXPORT_SYMBOL(__arch_hweight32); variable
H A Dhweight_64.S58 _GLOBAL(__arch_hweight32)
/linux-4.4.14/arch/blackfin/include/asm/
H A Dbitops.h114 static inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
126 return __arch_hweight32((unsigned int)(w >> 32)) + __arch_hweight64()
127 __arch_hweight32((unsigned int)w); __arch_hweight64()
132 return __arch_hweight32(w & 0xffff); __arch_hweight16()
137 return __arch_hweight32(w & 0xff); __arch_hweight8()
/linux-4.4.14/arch/mips/include/asm/
H A Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
/linux-4.4.14/arch/sparc/kernel/
H A Dsparc_ksyms_64.c44 EXPORT_SYMBOL(__arch_hweight32); variable
/linux-4.4.14/arch/sparc/include/asm/
H A Dbitops_64.h45 unsigned int __arch_hweight32(unsigned int w);
/linux-4.4.14/arch/tile/include/asm/
H A Dbitops.h64 static inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
/linux-4.4.14/arch/alpha/include/asm/
H A Dbitops.h410 static inline unsigned int __arch_hweight32(unsigned int w) __arch_hweight32() function
/linux-4.4.14/arch/powerpc/include/asm/
H A Dbitops.h269 unsigned int __arch_hweight32(unsigned int w);
/linux-4.4.14/arch/ia64/include/asm/
H A Dbitops.h436 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro

Completed in 429 milliseconds