Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 161291396e76e0832c08f617eb9bd364d1648148 authored by Linus Torvalds on 11 October 2009, 21:43:56 UTC
Linux 2.6.32-rc4
Tip revision: 1612913
hweight.h
#ifndef _ASM_GENERIC_BITOPS_HWEIGHT_H_
#define _ASM_GENERIC_BITOPS_HWEIGHT_H_

#include <asm/types.h>

extern unsigned int hweight32(unsigned int w);
extern unsigned int hweight16(unsigned int w);
extern unsigned int hweight8(unsigned int w);
extern unsigned long hweight64(__u64 w);

#endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */
back to top