blob: 68861ddd9dc6e5cf808e09e38a6ee1248f1b51c6 [file] [log] [blame]
Jens Axboe51aa2da2013-01-21 10:55:02 -07001#ifndef FIO_HWEIGHT_H
2#define FIO_HWEIGHT_H
3
4#include <inttypes.h>
5
6unsigned int hweight8(uint8_t w);
7unsigned int hweight32(uint32_t w);
Jens Axboedef823d2013-01-21 12:28:23 -07008unsigned int hweight64(uint64_t w);
Jens Axboe51aa2da2013-01-21 10:55:02 -07009
10#endif