Home | History | Annotate | Download | only in src

Lines Matching defs:num_bits_set

1082   unsigned int num_bits_set;
1083 for (num_bits_set = 0; x; x >>= 1) {
1084 num_bits_set += x & 1;
1086 return num_bits_set;