cregit-Linux how code gets into the kernel

Release 4.14 tools/include/asm-generic/bitops/arch_hweight.h

/* SPDX-License-Identifier: GPL-2.0 */
#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
Arnaldo Carvalho de Melo18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo17100.00%1100.00%
Total17100.00%1100.00%

#endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo8398.81%266.67%
Ingo Molnar11.19%133.33%
Total84100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.