Searched refs:hweight32 (Results 1 - 5 of 5) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/asm/
H A Dhweight.h5 unsigned int hweight32(unsigned int w);
/external/fio/lib/
H A Dhweight.h7 unsigned int hweight32(uint32_t w);
H A Dhweight.c11 unsigned int hweight32(uint32_t w) function
24 return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhweight.c10 unsigned int hweight32(unsigned int w) function
22 return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dbitops.h52 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);

Completed in 4661 milliseconds