3
votes
4answers
142 views
How to store several states in one variable?
Hi,
My object Item has several binary states which can be combined
bool CanBeSold;
bool CanBeBought;
bool CanBeExchanged;
I need to store current combination of values into one variable. The …
0
votes
2answers
41 views
one sql parameter to give me 3 potential values
In my stored procedure I need a single parameter that will give me a potential of 3 values.
So I can do something like:
@p1 <-- my parameter
IF (@p1 ???) -- include users
SELECT * FROM …
0
votes
3answers
160 views
convert a two Byte bit mask into a EnumSet
I am reading a binary file that has values stored in bit masks, both 1 Byte bit masks and 2 Byte bit masks. Each bit in the masks act as a switch that indicates where an Event has transpired.
…
2
votes
9answers
628 views
why does this work? (finding odd number in c++)
for (unsigned int i = 1; i <= 100; i++) {
if (i & 0x00000001) {
std::cout << i<<",";
}
}
why does (and how): if( i & 0x00000001 ) figure out the odd number?
3
votes
6answers
302 views
Why should I use bitwise/bitmask in PHP?
I am working on a user-role / permission system in PHP for a script.
Below is a code using a bitmask method for permissions that I found on phpbuilder.com.
Below that part is a much simpler version …
1
vote
5answers
202 views
interleaving bits with a mask
inputs:
arbitrary bitset, e.g. bit positions 012345
arbitrary bit mask, e.g. (x=1) xx0x0x
output:
xx0x1x2345
That is, I want the first bit of the bitset to be placed in the first 0 of the mask. …
1
vote
3answers
196 views
Bit masking an index to an array, Arduino environment
I'm trying to take a 16 bit unsigned integer from a structure, mask the first 8 bits of it, and use it as an index to an array with the function analogWrite which takes the output pin on the Arduino …
7
votes
6answers
686 views
What to do when bit mask (flags) enum gets too large.
I have a very large set of permissions in my application that I represent with a Flags enumeration. It is quickly approaching the practical upper bound of the long data type. And I am forced to come …
0
votes
3answers
467 views
Count bits in the number. [closed]
Duplicate:
Best algorithm to count the number of set bits in a 32-bit integer?
Suppose you have a number. Is there any way to count the bits which equals to 1 in binary representation of that …
1
vote
4answers
565 views
SQL Server: varbinary or int to store a bit mask?
Is there any advantage of using int vs varbinary for storing bit masks in terms of performance or flexibility.
For my purposes, I will always be doing reads on these bit masks (no writes or updates).
…
2
votes
5answers
311 views
Bitmask to Array Index
Hello,
Is there a simple way to convert a bitmask in to an array index?
ie. If i've got an enum
a = 0x01,
b = 0x02,
c = 0x04,
d = 0x08,
e = 0x10,
etc
and I want to store releated data in an …
4
votes
3answers
547 views
Is there way to match IP with IP+CIDR straight from SELECT query?
Something like
SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip';
So you don't first fetch all records from DB and then match them one-by …
1
vote
13answers
621 views
What is the fastest way(s) to loop through a large data chunk on a per-bit basis.
I am running through a memory block of binary data byte-wise.
Currently I am doing something like this:
for (i = 0; i < data->Count; i++)
{
byte = &data->Data[i];
((*byte …
2
votes
6answers
306 views
Programatically calculate the size of a value type
I'm writing a unit test for a method that packs boolean values into a byte. The various bit locations are determined by the value of an enum, which only has 5 values right now, but it's conceivable …
5
votes
17answers
1k views
Can I allocate a specific number of bits in C?
Hello,
I am trying to store a large amount of boolean information that is determined at run-time. I was wondering what the best method might be.
I have currently been trying to allocate the memory …
