blob: b02d077cc3644277288cbe2033dcb966f28f0366 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "util.h"
int bitpop(uint8_t bits)
{
int c;
for (c = 0; bits; c++)
bits &= bits -1;
return c;
}
int biton(uint8_t bits)
{
int n = 0;
if (bits >> 4) { bits >>= 4; n += 4;}
if (bits >> 2) { bits >>= 2; n += 2;}
if (bits >> 1) { bits >>= 1; n += 1;}
return n;
}
|