Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 29e8c3c304b62f31b799565c9ee85d42bd163f80 authored by Linus Torvalds on 05 March 2008, 04:33:54 UTC
Linux 2.6.25-rc4
Tip revision: 29e8c3c
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