HomeSort by relevance Sort by last modified time
    Searched refs:hweight32 (Results 1 - 5 of 5) sorted by null

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/asm/
hweight.h 5 unsigned int hweight32(unsigned int w);
  /external/fio/lib/
hweight.h 7 unsigned int hweight32(uint32_t w);
hweight.c 11 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/
hweight.c 10 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/
bitops.h 52 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);

Completed in 247 milliseconds