Home
last modified time | relevance | path

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

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