What is the best way to construct a bit mask in C with m set bits preceded by k unset bits, and followed by n unset bits:
00..0 11..1 00..0
k m n
For example, k=1, m=4, n=3 would result in the bit mask:
01111000
|
3
|
What is the best way to construct a bit mask in C with
For example, k=1, m=4, n=3 would result in the bit mask:
|
|||
|
|
|
|
~(~0 << m) << n |
||||||||||
|
|
|
So, you are asking for m set bits prefixed by k reset bits and followed by n reset bits? We can ignore k since it will largely be constrained by the choice of integer type.
|
||||||||||
|
|
|
I like both solutions. Here is another way that comes to my mind (probably not better).
EDIT:
There was a bug in my previous version (it was without the unsigned int cast). The problem was that And yes this approach has one big downside; it assumes that you know the number of bits of the default integer type or in other words it assumes that you really know k, whereas the other solutions are independent of k. This makes my version less portable, or at least harder to port. (It also uses 3 shifts, and addition and a bitwise negation operator, which is two extra operations.) So you would do better to use one of the other examples. Here is a little test app, done by Jonathan Leffler, to compare and verify the output of the different solutions:
|
||||||||
|