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
| Person | Tokens | Prop | Commits | CommitProp |
borislav petkov | borislav petkov | 10 | 55.56% | 2 | 66.67% |
peter zijlstra | peter zijlstra | 8 | 44.44% | 1 | 33.33% |
| Total | 18 | 100.00% | 3 | 100.00% |
static inline unsigned int __arch_hweight16(unsigned int w)
{
return __sw_hweight16(w);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
borislav petkov | borislav petkov | 10 | 55.56% | 2 | 66.67% |
peter zijlstra | peter zijlstra | 8 | 44.44% | 1 | 33.33% |
| Total | 18 | 100.00% | 3 | 100.00% |
static inline unsigned int __arch_hweight8(unsigned int w)
{
return __sw_hweight8(w);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
borislav petkov | borislav petkov | 10 | 55.56% | 2 | 66.67% |
peter zijlstra | peter zijlstra | 8 | 44.44% | 1 | 33.33% |
| Total | 18 | 100.00% | 3 | 100.00% |
static inline unsigned long __arch_hweight64(__u64 w)
{
return __sw_hweight64(w);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
borislav petkov | borislav petkov | 10 | 58.82% | 2 | 66.67% |
peter zijlstra | peter zijlstra | 7 | 41.18% | 1 | 33.33% |
| Total | 17 | 100.00% | 3 | 100.00% |
#endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
peter zijlstra | peter zijlstra | 43 | 51.81% | 1 | 33.33% |
borislav petkov | borislav petkov | 40 | 48.19% | 2 | 66.67% |
| Total | 83 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.