-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.c
51 lines (43 loc) · 890 Bytes
/
basic.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "common.h"
BOOLEAN is_power_of_two(BYTE byte)
{
// x & (x-1)
BYTE result = byte & (byte - 0x01);
return (result == 0x00);
}
BOOLEAN all_bits_same(BYTE byte)
{
// x & (x+1)
BYTE result = byte & (byte + 0x01);
return (result == 0x00);
}
BYTE isolate_rightmost_set(BYTE byte)
{
// x & (-x)
BYTE result = byte & (-byte);
return result;
}
BYTE isolate_rightmost_unset(BYTE byte)
{
// ¬x & (x+1)
BYTE result = ~byte & (byte + 0x01);
return result;
}
BYTE identify_trailing_zeroes(BYTE byte)
{
// ¬x & (x-1)
BYTE result = ~byte & (byte - 0x01);
return result;
}
BYTE identify_rightmost_set_and_trailing_unset(BYTE byte)
{
// x ^ (x-1)
BYTE result = byte ^ (byte - 0x01);
return result;
}
BYTE propogate_rightmost_set(BYTE byte)
{
// x | (x-1)
BYTE result = byte | (byte - 0x01);
return result;
}