Searched refs:__arch_hweight32 (Results 1 – 12 of 12) 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)
7 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
28 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w))
14 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
47 unsigned int __arch_hweight32(unsigned int w);
324 unsigned int __arch_hweight32(unsigned int w);
408 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32() function
433 #define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful)) macro