Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6847e154e3cd74fca6084124c097980a7634285a authored by Linus Torvalds on 14 July 2009, 01:18:52 UTC
Linux 2.6.31-rc3
Tip revision: 6847e15
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