cregit-Linux how code gets into the kernel

Release 4.7 include/asm-generic/bitops/arch_hweight.h

#ifndef _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_

#define _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_

#include <asm/types.h>


static inline unsigned int __arch_hweight32(unsigned int w) { return __sw_hweight32(w); }

Contributors

PersonTokensPropCommitsCommitProp
borislav petkovborislav petkov1055.56%266.67%
peter zijlstrapeter zijlstra844.44%133.33%
Total18100.00%3100.00%


static inline unsigned int __arch_hweight16(unsigned int w) { return __sw_hweight16(w); }

Contributors

PersonTokensPropCommitsCommitProp
borislav petkovborislav petkov1055.56%266.67%
peter zijlstrapeter zijlstra844.44%133.33%
Total18100.00%3100.00%


static inline unsigned int __arch_hweight8(unsigned int w) { return __sw_hweight8(w); }

Contributors

PersonTokensPropCommitsCommitProp
borislav petkovborislav petkov1055.56%266.67%
peter zijlstrapeter zijlstra844.44%133.33%
Total18100.00%3100.00%


static inline unsigned long __arch_hweight64(__u64 w) { return __sw_hweight64(w); }

Contributors

PersonTokensPropCommitsCommitProp
borislav petkovborislav petkov1058.82%266.67%
peter zijlstrapeter zijlstra741.18%133.33%
Total17100.00%3100.00%

#endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
peter zijlstrapeter zijlstra4351.81%133.33%
borislav petkovborislav petkov4048.19%266.67%
Total83100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}