Searched refs:hweight32 (Results 1 – 5 of 5) sorted by relevance
10 unsigned int hweight32(unsigned int w) in hweight32() function22 return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w); in hweight64()
11 unsigned int hweight32(uint32_t w) in hweight32() function24 return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w); in hweight64()
7 unsigned int hweight32(uint32_t w);
5 unsigned int hweight32(unsigned int w);
52 return sizeof(w) == 4 ? hweight32(w) : hweight64(w); in hweight_long()