Home
last modified time | relevance | path

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

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