Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
9answers
618 views

When is it better to store flags as a bitmask rather than using an associative table?

I’m working on an application where users have different permissions to use different features (e.g. Read, Create, Download, Print, Approve, etc.). The list of permissions isn’t expected to change ...
13
votes
7answers
5k 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 ...
8
votes
6answers
274 views

Regarding bit masking in C. Why (~(~0 << N)) is preferred than ((1 << N) -1)?

I do know that ~0 will evaluate the maximum word sized bit 1s (and thus takes caring of portability), but I am still not getting why ((1 << N) - 1) is discouraged? Please share if you used the ...
8
votes
6answers
4k 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 ...
7
votes
6answers
175 views

Determine which bit is set, for a date, using complex bit masks

I have a bit shift mask that represents days in a week: Sunday = 1 Monday = 2 Tuesday = 4 ... Saturday = 64 I'm using a bitmask because several (at least one) days may be set to 1. The problem ...
7
votes
5answers
507 views

Improve this PHP Bitfield Class for settings/permissions?

I have been trying to figure out the best way to use Bitmask or Bitfields in PHP for a long time now for different areas of my app for different user settings and permissions. The farthest I have ...
7
votes
5answers
4k views

Using a bitmask in C#

Let's say I have the following int susan = 2; //0010 int bob = 4; //0100 int karen = 8; //1000 and I pass 10 (8 + 2) as a parameter to a method and I want to decode this to mean susan and karen I ...
7
votes
7answers
228 views

Does this type of function or technique have a name?

HI there, I'm slightly new to programming, more of a hobby. I am wondering if a the following logic or technique has a specific name, or term. My current project has 7 check boxes, one for each day ...
7
votes
4answers
2k 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). ...
6
votes
3answers
2k 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 ...
5
votes
1answer
67 views

Possible to prevent accidental bitwise operators on non-bitmask field?

In C# you are recommended to add the [Flags] attribute to bitmask enumerations, like so: [Flags] public enum Condiments { None = 0, Ketchup = 1, Mustard = 2, Mayo = 4, Pickle = 8, ...
5
votes
4answers
3k views

create a permission bit mask in java

I want to do something like this: public enum Permissions { CanBlah1, CanBlah2, CanBlah3 } byte[] userPerm = Permissions.CanBlah1 | Permissions.CanBlah2; // check permssions // ...
5
votes
16answers
2k views

Can I allocate a specific number of bits in C?

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 using: ...
4
votes
4answers
78 views

Declaring masks for bitwise operations

I'm new to low level operations like this, I'm hoping someone can point out the obvious mistake I must be making here. //Input value - 00111100 //I want to get the value of the bits at indexes 1-3 ...
4
votes
5answers
75 views

I want to calculate the inverse mask for an unsigned char

I would like to calculate an inverse mask for an unsigned char.meaning if the original mask 0xc0 the the inverse mask should be 0x3f.that is to say all the bits should be flipped or inverted.I have ...
4
votes
2answers
209 views

Bitwise subtraction

Given the enum: [Flags] enum foo { a = 1, b = 2, c = 4 } then foo example = a | b; If I don't know if foo contains c, previously I have been writing the following if (example & foo.c == ...
4
votes
5answers
425 views

Java Working with bits

Let me start by saying I have never really worked with bits before in programming. I have an object that can be in 3 states and I want to represent those states using a 3 bit array. For example: I ...
4
votes
4answers
156 views

Is there a name for the technique of using base-2 numbers to encode a list of unique options?

Apologies for the rather vague nature of this question, I've never formally been taught programming and Google is rather useless to a self-help guy like me in this case as the key words are pretty ...
4
votes
4answers
189 views

How can I implement forum privileges

I've started developing a forum application in PHP on my MVC Framework and I've got to the stage where I assign permissions to members (for example: READ, WRITE, UPDATE, DELETE). Now, I know I can ...
4
votes
3answers
3k views

BitMask operation in java

Consider the scenario I have values assigned like these Amazon -1 Walmart -2 Target -4 Costco -8 Bjs -16 In DB, data is stored by masking these values based on their ...
3
votes
3answers
66 views

Can I create a 1-to-64 bits bitmask without a conditional in Java?

I want to write a function that takes an int between 1 and 64, and returns an appropriate "bitmask", with as many 1 bits as the input. I started like this: /** Computes a bitmaks */ private static ...
3
votes
5answers
54 views

Is there an elegant way to store a dual relationship (i.e. user 1 and user 2 are friends)

I've run into the same problem in two different pieces of work this month: Version 1: User 1 & User 2 are friends Version 2: Axis 1 & Axis 2 when graphed should have the quadrants colored... ...
3
votes
2answers
87 views

chess sliding pieces bitboards

I understood non-sliding pieces quite easily but I've been having some trouble with the sliding pieces. I currently have 64 bitboards (1 for each square, not saved in a array as well as 8 bitboards ...
3
votes
4answers
195 views

Convenient ways to work with large bit mask

I am trying to implement an algorithm within an iOS app that will make use of large bitmasks. Each bitmask can be up to 256 bits (32 bytes) in length. I will need to quickly get/set bits at arbitrary ...
3
votes
2answers
207 views

Passing bit value from C#

I've a C++ interface having a public property "P" which accepts bit value like 5, 6,7 etc. Its documentation says:"Set bit mask of group type. Bit 5 is for 'a', Bit 6 is for 'b',etc." Am using this ...
3
votes
6answers
252 views

Bitmask'ed Int to Enum[] or Int[]? c#

I have an enum that looks like this: enum foo{ a=0, b=1, c=2, d=4 } Building the flag / bitmask is fine, but is it possible to do something like int i = 3; var bar = Enum.Split(foo,i); ...
3
votes
2answers
692 views

Bitmask in PHP for settings?

Bits/Bitmask are something I have been struggling to understand for a while but I would like to learn how to use them for settings and things like that in PHP. I have finally found a Class that ...
3
votes
3answers
1k views

Python bitmask (variable length)

in order to solve one research problem we have to organise the bitmask search in python. As an input we have a raw data (we present it as a sequence of bits). Size is smth about 1,5Gb. as an output we ...
3
votes
6answers
746 views

bitmask question?

I have the follow: public static final int LIMIT_ONE = 1; public static final int TRADEABLE = (1 << 1); public static final int SELLABLE = (1 << 2); public static final int STORABLE = (1 ...
3
votes
2answers
483 views

How can I get the bitmask value back out of an enum with the flag attribute in C#?

In our database we have a bitmask that represents what types of actions a user can make. In our C# client when we retrieve this integer value from the database we construct an enum/flag. It looks ...
3
votes
3answers
218 views

Most efficient way to extract bit flags

I have these possible bit flags. 1, 2, 4, 8, 16, 64, 128, 256, 512, 2048, 4096, 16384, 32768, 65536 So each number is like a true/false statement on the server side. So if the first 3 items, and ...
3
votes
3answers
282 views

Efficient way to create/unpack large bitfields in C?

I have one microcontroller sampling from a lot of ADC's, and sending the measurements over a radio at a very low bitrate, and bandwidth is becoming an issue. Right now, each ADC only give us 10 bits ...
3
votes
2answers
764 views

Little Endian Bitmask

I need to convert an array of integers to a little endian bitmask using Ruby. Any links or hints would be appreciated. the example says [2,7,9,11] => "4205" a = [2,7,9,11] # 4205 b = [1,2,3,4] # ...
3
votes
4answers
320 views

How to store several states in one variable?

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 reason is ...
3
votes
3answers
2k 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. ...
3
votes
9answers
2k 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
2answers
2k views

Using SQL to determine cidr value of a subnet mask

I'd like to find a way to do a SQL query that will calculate the cidr (bit representation) of a subnet mask stored in the database. So for example, I've got either 255.255.255.0 or its decimal value ...
2
votes
1answer
114 views

In C++ use a C bitmask (anonymous enum) exposed by iOS native library [closed]

Cocoa utilises typedef-ed anonymous enum bitfields. I'm using objective-C++, for better & worse. Inside a .mm file I need to assign 2 bits (bitwise inclusive OR) to a property of the type of one ...
2
votes
1answer
64 views

C# bitmask validation

I have a small problem with bitmask validation as below: ... if (BitExist("52","0x20")) { //do something } ... ... Private bool BitExist(String value, String key) { //how can i make it return ...
2
votes
2answers
113 views

How to avoid sign extending bit mask in Java?

My bit masks are bytes, and I'd like to keep them exactly as they are, but I think they're sign extended. I don't care if the byte is considered positive or negative, as long as it has the same bits ...
2
votes
2answers
187 views

Confusion over typedef struct in C++

I have a program my professor wrote that simulates the way the memory writes to the L2 cache. It has a couple of places where I'm supposed to fill in the blank. The first thing I'm supposed to do is ...
2
votes
3answers
167 views

Storing flags in a DB

In my application, I'd like the user to select his working days. then store them in the database. Of course my application will process the users' data like: Is today a working day for a specific ...
2
votes
5answers
350 views

if (mask & VALUE) or if ((mask & VALUE) == VALUE)?

You're probably familiar with the enum bitmask scheme, like: enum Flags { FLAG1 = 0x1, FLAG2 = 0x2, FLAG3 = 0x4, FLAG4 = 0x8, NO_FLAGS = 0, ALL_FLAGS = FLAG1 | FLAG2 | FLAG3 ...
2
votes
1answer
260 views

Relocation overflow when performing bitwise AND (SPARC Assembly)?

I am trying to perform a bitwise AND on a register, as a bitmask to remove the most significant bit (which happens to be bit 16 when counting from 0). However, when I try to compile my code using gcc, ...
2
votes
3answers
468 views

Given a list and a bitmask, how do I return the values at the indices that are True?

I start with the following list s and bitmask b: s = ['baa', 'baa', 'black', 'sheep', 'have', 'you', 'any', 'wool'] b = [1, 0, 0, 0, 1, 1, 1, 0] # or any iterable with boolean values How do I write ...
2
votes
3answers
347 views

Finding duplicate records in mysql based on a bitmask

I have a mysql table which stores maintenance logs for sensors. I'd like to design a query that finds instances where a given sensor was repaired/maintained for the same reason. (Recurring problem ...
2
votes
5answers
974 views

Bitmask to Array Index

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 array, is ...
2
votes
13answers
888 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
447 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 ...
2
votes
7answers
1k views

Is there a practical limit to the size of bit masks?

There's a common way to store multiple values in one variable, by using a bitmask. For example, if a user has read, write and execute privileges on an item, that can be converted to a single number by ...

1 2