Home | History | Annotate | Download | only in src

Lines Matching refs:num_bits_set

1045   unsigned int num_bits_set;
1046 for (num_bits_set = 0; x; x >>= 1) {
1047 num_bits_set += x & 1;
1049 return num_bits_set;