Bitmask is a technique used to isolate specific bits in a byte in order to work only on the desired ones. They are used in IP addresses to separate the network prefix and the host number for example.
0
votes
0answers
13 views
Shortest hamiltonian path with dynamic programming and bitmasking
I've just read an article about how to find the shortest hamiltonian path using dynamic programming here http://codeforces.com/blog/entry/337.
While the pseudocode works, I do not understand why I ...
0
votes
0answers
15 views
All subsets of a bitmask
I'm encoding a list of integers which represents cities from 0 to N-1 where 3<=N<=20 into a bitmask of length N where a 1 means city (place of 1 in the bitmask) is in the list.
For example: 1001 ...
0
votes
1answer
34 views
Extracting bit from a flow of bit string in Python
I have a binary file where a IP Packet was written. I have to create a Python program that has to validate each field in the IP Packet, so I'm trying to parse each field form the file (Ip Packet). The ...
-1
votes
0answers
45 views
Objective C - Creating new CTFont Fails
I am creating some helper methods for UIFont to be used by my RichText Editor. I was able to add symbolic traits to a CTFont, but when I try to remove them the CTFontCreate Method returns null. Any ...
0
votes
4answers
43 views
Bitmasks: Initialize an int bitmask with a variable length list of ints AND int-ranges
Foreword: I find it annoying that an answer is marked as duplicate without actually checking if it solves one's problem. I've asked this question before, but didn't succeed. In particular, this ...
1
vote
2answers
102 views
Bitmask helper: Create bitmask with a list of int and int-ranges list in C++ [duplicate]
Edit2: Guys, sorry but I find it annoying that an answer is marked as duplicate without actually checking if it solves one's problem. The suggested SO answer does not fit the stated problem. It is ...
0
votes
1answer
29 views
Simple way to calculate values in a bitmask?
Apologies - I'm not even sure I'm using the right terminology here.
I have a series of confidential documents and I'm creating a bitmask (?) to represent which of those documents a given user can ...
4
votes
3answers
144 views
Declaring and checking/comparing (bitmask-)enums in Objective-C
You know in Cocoa there is this thing, for example you can create a UIView and do:
view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
I have a custom UIView ...
2
votes
2answers
51 views
Test if two floats are zero without multiple tests
Is there a clever expression trick to test if a float vec3 is axial (i.e. two zero components) without using multiple equality tests?
At first I thought of if(abs(x)+abs(y)==0.0) (pseudocode)... but ...
0
votes
3answers
70 views
Bit masking an IntPtr
How do I use Binary-AND to check if a particular bit is set for an IntPtr object?
I'm calling GetWindowLongPtr32() API to get window style for a window. This function happens to return an IntPtr. I ...
1
vote
2answers
49 views
Bitwise operations based on two numbers
I got an assignment today at my faculty (Mathematics Faculty of Belgrade, Serbia) which says:
1) Write a program that for two given integers x and y, inverts in integer x those bits that match the ...
2
votes
3answers
99 views
Bitmask: how to determine if only one bit is set
If I have a basic bitmask...
cat = 0x1;
dog = 0x2;
chicken = 0x4;
cow = 0x8;
// OMD has a chicken and a cow
onTheFarm = 0x12;
...how can I check if only one animal (i.e. one bit) is set?
The ...
0
votes
0answers
32 views
Bitmask Encoding Methodology?
I'm hoping a scholarly type could give me a name or keyword to search for on this. I'm trying to find any white papers on similar data structure storage methodologies.
I'm attempting to store ...
2
votes
1answer
50 views
Creating a CGEvent from a signed integer
Before I continue, I'd like to preface this post by saying that this is possibly the most hacky, downright evil, nasty topic, so I don't expect answers to contain "legal" code by any stretch.
While ...
0
votes
2answers
104 views
Shift and masking in C
I have this problem. I have a payload that dinamically change its length. If I don't cut this payload, I will have also informations that are rubbish for me. So I want to cut the payload in base of my ...
0
votes
1answer
76 views
branchless bitwise operation
I'm looking for a branchless bitwise operation that can determine with a given mask :
Mask : 0xFF0000 Value : 0xAA0000 return : true
Mask : 0xFF0000 Value : 0xAA00AA return : false
Mask ...
0
votes
4answers
110 views
C# Storing categories in a value - Bitmasks
I am working on an application that have some categories. The aim is to store the categories in a value.
First, I choosed to store them in an int.
Categories : 0, 1, 2, 3...
Then I do a bitmask ...
3
votes
2answers
203 views
union vs bit masking and bit shifting
What are the disadvantages of using unions when storing some information like a series of bytes and being able to access them at once or one by one.
Example : A Color can be represented in RGBA. So a ...
1
vote
5answers
146 views
Is it possible to create a bitmask for ~100 constants?
Would that mean that the 100th constant would have to be 1 << 100?
1
vote
3answers
107 views
C Macro Expression Return Value
I am writing a devices handler for my embedded systems class and I am trying to use a macro to check if the ith bit is set. My macro doesn't seem to work correctly but the inline function does. Why is ...
0
votes
3answers
69 views
Mask by n bytes
I struggle masking a uint64_t variable by N bytes. I do not know N but I know it is 8 or less. My current code looks like this:
// uint64_t n is given
uint64_t mask;
for( mask = 0x00; n; n--) {
...
3
votes
2answers
246 views
How do I check, if bitmask contains bit?
I don't quite understand this whole bitmask concept.
Let's say I have a mask:
var bitMask = 8 | 524288;
I undestand that this is how I would combine 8 and 524288, and get 524296.
BUT, how do I go ...
0
votes
3answers
67 views
Shifting 4 bits using a single number
I have to write a method that takes in an integer as a parameter (0, 1, 2, or 3). I have to use that to create a bitmask with a 0. So, if the parameter is 0, than the bitmask will be FFF0, for 1: ...
2
votes
4answers
146 views
Matching binary patterns in C
I'm currently developing a C program that needs to parse some bespoke data structures, fortunately I know how they are structured, however I'm not sure of how to implement my parser in C.
Each of the ...
0
votes
2answers
85 views
What are possible ways of converting these bitmask definitions from pawn language to PHP?
Well, to clarify, pawn is a language that is pretty similar to C++. I'm programming an Admin Control Panel that requires bit mask permissions (in php) and I actually don't know if I converted the ...
5
votes
2answers
182 views
Correct usage of bitmask?
heyhey,
just have a question about bitmasks. I think I know now what they are and where they can be used.
I want to store specific permissions like BUILD, BREAK and INTERACT and maybe more for ...
1
vote
3answers
204 views
Listing prime numbers using Sieve's method using bitmask
I wrote the following code to list all the prime numbers upto 2 billion using Sieve's method. I used bitmasking for flagging purpose. While I am able to get the prime numbers correctly, a few primes ...
1
vote
1answer
152 views
Matching bitmasks using bitstrings (instead of ints) in SQL
I found a great resource here (
Comparing two bitmasks in SQL to see if any of the bits match
) for doing searches in a SQL database, where you're storing data with multiple properties using bit ...
3
votes
3answers
108 views
Apply/remove bitmask depending on condition
I would like to simplify the following expression (block is an integer, either 0 or 1):
if (block)
opts = opts & ~O_NONBLOCK;
else
opts = opts | O_NONBLOCK;
This is what I've come up ...
1
vote
2answers
91 views
My program is crashing when flipping bits
I have this function and apparently it causes my program to crash:
long long todos(long long x,long long i) {
x ^= (1 << i);
long long aux = i - 1;
if(aux >= 0) x ^= (1 << aux);
...
2
votes
1answer
86 views
Proper way to compare BitmaskType with zero?
According to the BitmaskType concept, the implementation has to assure that the following statement is well formend: (listed in §17.5.2.1.3.4)
The value Y is set in the object X if the expression ...
-2
votes
1answer
58 views
applying a bit vector for mask
I want to do a simple bit mask operation. Lets say
uint64_t a = 348659235483;
Assuming this number is converted to binary, I want to extract the values from bit 6 to 12 (0 is MSB on the right end). ...
1
vote
3answers
156 views
Quick way to set a bitmask from a boolean in C
In my code I have some checks like this...
if (some_test) {
flag |= SOME_FLAG;
}
else {
flag &= ~SOME_FLAG;
}
A convenient way around this I found so far is...
flag = (some_test) ? (flag ...
2
votes
3answers
255 views
Alternative design for a bitmask in DB
I have a users table, with following format :
users(id,name.....,settings)
settings field is of type number and contains a bitmask of settings.
I have to support(inter alia) queries like :
find ...
3
votes
2answers
766 views
How to change background color of bitmap to transparent and background should not drag?
I used:
Bitmap bitmap= Bitmap.createBitmap(255, 255, Bitmap.Config.RGB_565);
Canvas canvas = new Canvas(bitmap);
Background color is black....
If I use:
Bitmap.Config.ARGB_8888;
background ...
0
votes
3answers
597 views
apply a bit mask in python
I would like to apply a bit mask to a variable in python to figure out which bits are set. I've been trying around but haven't figured out the correct way to do it. My variable is binary and to ...
1
vote
2answers
110 views
Comparing two strings, limited via bitmask in PHP
In some PHP I need to compare two strings, but only on the bits that are set as one in the bitmask. How would I implement such a behavior?
I've tried:
$string1='aaabbb';
$string2='ababbb';
...
0
votes
1answer
289 views
Bitmask functions
I'm writing a program to find if I can make a square with N sticks of N length.
Ive used Bitmask cause its easier for the big input I'm gonna put in there. For some reason, my backtracking code its ...
1
vote
2answers
85 views
What's wrong with my bitmasking?
I should create n arrays of bits, n is not a constant! Why program gives garbage instead of my arrays?
How to write obtained arrays to a file, so that they were there in a bit?
Example:
class bits ...
4
votes
3answers
222 views
update specific bit in integer column
I have a mysql table where user permissions are stored as a bitmask:
|user | permissions |
| Admin | 31 |
| User | 13 |
16 8 4 2 1
Admin -> 1 1 1 1 1 ...
3
votes
1answer
103 views
C++ stream bitmask as bool?
In the C++ standard, std::ios::openmode, std::ios::fmtflags and std::ios::iostate are implementation defined. But std::ios::goodbit is standardized to be equal to zero. My question is : can these ...
1
vote
2answers
460 views
Determining number of possible addresses in a subnet / which subnet an address belongs to?
Suppose we have a class B network with subnet mask 255.255.240.0. How can we check what is the maximum number of hosts in this subnet? And how we can determine to which subnet host with IP address ...
0
votes
2answers
93 views
Alternative to creating user permissions with bitmask
So the app we are writing has certain privileges a user can have, and at first we just made a simple bitmask and saved each privilege as a separate bit and stored the final value into our DB table as ...
2
votes
3answers
294 views
Performance implications of using Java BigInteger for a huge bitmask
We have an interesting challenge. We have to control access to data that reside in "bins". There will be, potentially, hundreds of thousands of "bins". Access to each bin is controlled individually ...
0
votes
3answers
431 views
Java: Check binary value with a mask then get integer
Here is my problem:
I have a binary value
101001
and a mask
011100
I would like to compare them and get the result as an integer. In this case that would give:
...
0
votes
1answer
93 views
Write and use a function that takes a mask as an argument and returns a structure
I'm new to coding and I am trying to complete this assignment, but I can't get it to work:
Write and use a function that takes a mask as an argument and returns a structure.
Here is what I've ...
1
vote
4answers
1k views
C++11 standard conformant bitmasks using enum class
Can you implement standard conformant (as described in 17.5.2.1.3 of the n3242 draft) type safe bitmasks using enum class? The way I read it, a type T is a bitmask if it supports the ...
2
votes
3answers
278 views
What are the rules for bitmasks? Like 0xFF vs. 0xFC
Im working on a game that creates Procedurally generated dungeons, I found an example that uses bit masking to retrieve things like room number and type of door.
In the example he uses a bitmask to ...
3
votes
4answers
128 views
RegEx with a bitmask?
I have a stream of partially binary data, and I want to match when a certain bit is set in a byte in a certain position in the string.
This is an existing system in .NET using ...
3
votes
1answer
272 views
How to convert this days of week to bitmask?
I have a method that converts a bitmask to a list of days using an Enum. I am trying to do the reverse, but am having trouble. I have DaysOfWeekToEnum working, but not DaysOfWeekFromEnum. Below is ...
