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

/linux-master/arch/x86/include/asm/
H A Darch_hweight.h15 static __always_inline unsigned int __arch_hweight32(unsigned int w) function
28 return __arch_hweight32(w & 0xffff);
33 return __arch_hweight32(w & 0xff);
39 return __arch_hweight32((u32)w) +
40 __arch_hweight32((u32)(w >> 32));
/linux-master/arch/riscv/include/asm/
H A Darch_hweight.h20 static __always_inline unsigned int __arch_hweight32(unsigned int w) function
42 return __arch_hweight32(w & 0xffff);
47 return __arch_hweight32(w & 0xff);
73 return __arch_hweight32((u32)w) +
74 __arch_hweight32((u32)(w >> 32));
/linux-master/arch/mips/include/asm/
H A Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) function
/linux-master/include/asm-generic/bitops/
H A Darch_hweight.h7 static inline unsigned int __arch_hweight32(unsigned int w) function
H A Dconst_hweight.h28 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
/linux-master/tools/include/asm-generic/bitops/
H A Darch_hweight.h7 static inline unsigned int __arch_hweight32(unsigned int w) function
H A Dconst_hweight.h28 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
/linux-master/arch/sparc/lib/
H A Dhweight.S33 ENTRY(__arch_hweight32)
37 ENDPROC(__arch_hweight32)
38 EXPORT_SYMBOL(__arch_hweight32)
40 .word __arch_hweight32
/linux-master/arch/powerpc/lib/
H A Dhweight_64.S50 _GLOBAL(__arch_hweight32)
74 EXPORT_SYMBOL(__arch_hweight32)
/linux-master/arch/sparc/include/asm/
H A Dbitops_64.h47 unsigned int __arch_hweight32(unsigned int w);
/linux-master/arch/powerpc/include/asm/
H A Dbitops.h313 unsigned int __arch_hweight32(unsigned int w);
/linux-master/arch/alpha/include/asm/
H A Dbitops.h428 static inline unsigned int __arch_hweight32(unsigned int w) function

Completed in 148 milliseconds