Searched refs:__arch_hweight32 (Results 1 – 8 of 8) sorted by relevance
15 static __always_inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function28 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()
33 ENTRY(__arch_hweight32)37 ENDPROC(__arch_hweight32)38 EXPORT_SYMBOL(__arch_hweight32)40 .word __arch_hweight32
50 _GLOBAL(__arch_hweight32)74 EXPORT_SYMBOL(__arch_hweight32)
14 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
47 unsigned int __arch_hweight32(unsigned int w);
233 unsigned int __arch_hweight32(unsigned int w);
411 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
436 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro