Searched defs:hweight32 (Results 1 - 2 of 2) sorted by relevance

/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/fio/lib/
H A Dhweight.c11 unsigned int hweight32(uint32_t w) function
24 return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w);

Completed in 115 milliseconds