Home | History | Annotate | Download | only in src

Lines Matching refs:num_bits_set

1074   unsigned int num_bits_set;
1075 for (num_bits_set = 0; x; x >>= 1) {
1076 num_bits_set += x & 1;
1078 return num_bits_set;