The manipulation of individual bits. Operators used may include bit-wise and/or (&/|), left-shift (>)
3
votes
2answers
206 views
Find out (in C++) if binary number is prefix of another
I need a function with a header like this:
bool is_prefix(int a, int b, int* c) {
// ...
}
If a is, read as a binary number string, a prefix of b, then set *c to be the rest of b (i.e. "what b ...
1
vote
3answers
35 views
read single bit operation python 2.6
I am trying to read a single bit in a binary string but can't seem to get it to work properly. I read in a value then convert to a 32b string. From there I need to read a specific bit in the string ...
5
votes
0answers
52 views
“Shared Exponent” representation of a floating point vector in OpenCL C
In OpenCL, I want to store a vector (3D) using a "Shared Exponent" representation for compact storage. Typically, if you store a 3D floating point vector, you simply store 3 separate float values (or ...
0
votes
5answers
124 views
Bit manipulation (clear n bits)
Going through the book "Cracking the coding interview" by Gayle Laakmann McDowell, in bit manipulation chapter, it posts a question:
Find the value of (assuming numbers are represented by 4 bits):
...
3
votes
1answer
115 views
Bit Hack in C Cannot Understand
I was asked this question in an interview and still cannot figure out what it does. Can someone explain what it does and how it does it?
v = v - ((v >> 1) & (T)~(T)0/3); ...
1
vote
3answers
73 views
C: need a “sign” type
For my C computation, I need a sign type (an associated operator is acceptable) that can do the following:
type sign_t = -1 | 0 | 1
integer mult_sign(integer i, sign_t s)
{
switch (s) {
case ...
2
votes
6answers
86 views
order of an operation when upper bound is fixed
I recently had an interview and was asked to find number of bits in integer supplied. I had something like this:
#include <iostream>
using namespace std;
int givemCountOnes (unsigned int X) {
...
0
votes
1answer
44 views
Read 14 bit number from 2 bytes
I am trying to decode the run-length-encoding described in this specification here.
it says:
There may be 1, 2, 3, or 4 bytes per count. The first two bits of the first count byte contains 0,1,2,3 ...
-1
votes
2answers
103 views
Is there an efficient way to construct b10101010101010101010101010101010? [closed]
I want to construct the unsigned integer (4 bytes) represented by the binary string 10101010101010101010101010101010 (that's 16 1s and 16 0s).
Is there an efficient way to construct this value using ...
13
votes
7answers
345 views
Check integer is bit rotation of another integer
Given two integers a and b, how can we check that b is a rotated version of a?
For example if I have a = 0x01020304 (in binary 0000 0001 0000 0010 0000 0011 0000 0100), then the following b values ...
0
votes
5answers
101 views
Why are two options present for right shift? ( arithmetic / logical )
Why does right shift have two choices — appending the sign bit (arithmetic right shift) or appending 0 (logical right shift) and why does the implementation get to choose which?
0
votes
2answers
37 views
bitwise AND doesn't work on MSB
I'm implementing a bit vector by packing bits into an array of uints. The getBit(index) function does a (array[cell] & (1 << bit)) >> bit to get whether a bit has been set or not. This ...
-1
votes
3answers
51 views
c# get bits from int as int
I need to get 4 ints from a integer with the following format
int1 14 bits
int2 14 bits
int3 3 bits
int4 1 bit
I've found a lot of articles for reading individual bits from an int ...
-1
votes
2answers
56 views
data lost while copying using strrncpy from smaller to bigger data array
It is a bit strange but I seem to lose data while doing an strncpy while copying data from a smaller array to bigger array. I a quite lost as to why this happens. Please help!
Here is the code(which ...
-1
votes
2answers
35 views
bitwise OR (on array)
I need to perform bitwise OR of two arrays of dataType byte in java , how can i do so ?
byte a= new byte[256];
byte b= new byte[256];
byte c;/*it shld contain information i.e bitwise OR of ...
0
votes
4answers
89 views
Optimal packing of 128 bit array into a number
I have a hash whose values are set/unset based on some condition(essentially a bitmap). This hash needs to be stored as a string(in a blob) in the most optimal way possible. I figured I could use a ...
0
votes
1answer
36 views
simple unsigned long long conversion from array
I have an 8 byte counter which I am trying to increment. I later want to convert it to an unsigned long long value. But the value after conversion throws error. Is this some endian problem or this is ...
1
vote
1answer
85 views
Bit operations in flipping coin
I was trying to understand this piece of code. I think it is using some variant of segment tree data structure but I cannot understand any bit operations in this code.
The actual question is that ...
2
votes
3answers
43 views
Verification of bitmask consisting of few bytes
I have a byte[] array of 4 bytes. Also there are a corresponding 4 byte bitmasks in form of hex values (like 0x02000000) and I need to verify those masks against my byte[] array. While I'm perfectly ...
0
votes
5answers
112 views
how to manipulate bit of integer type in c?
I have written this program:
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
struct A {
bool a;
bool b;
bool c;
bool d;
};
struct B {
int a;
};
int main() {
...
1
vote
2answers
113 views
Bitwise operation on unsigned char
I have a sample function as below:
int get_hash (unsigned char* str)
{
int hash = (str[3]^str[4]^str[5]) % MAX;
int hashVal = arr[hash];
return hashVal;
}
Here array arr has size as ...
0
votes
3answers
56 views
What is the purpose of the unsigned right shift operator “>>>” in Java?
I understand what the unsigned right shift operator ">>>" in Java does, but why do we need it, and why do we not need a corresponding unsigned left shift operator?
0
votes
1answer
67 views
Mask and aggregate bits
I'm trying to efficiently execute the following task:
INPUT VALUE: 01101011
MASK: 00110010
MASK RESULT: --10--1-
AGGREGATED: 00000101
I hope this examples explains clearly what I'm trying ...
4
votes
3answers
84 views
How to reverse a section of bit digits in C?
In short, if I'm dealing with a number in binary, like 0000 0110, and suppose I want only the last 3 bits to be reversed, are there any methods that translate this into 0000 0011?
I have seen other ...
-1
votes
4answers
61 views
How To Switch A Bit In An Integer? [closed]
I have an integer and I would like to switch 1 bit in it from 0 to 1 or from 1 to 0. I don't know its state. How do I do that in 1 statement ?
using & | ~ ^
avoiding if else
(added xor ...
2
votes
1answer
69 views
find set bits positions in a byte
I was tyring to create a sparse octree implementation like the people at nVidia ("Efficient Sparse Voxel Octrees") were doing for their voxel things when I came across this issue:
I have a bitfield ...
0
votes
3answers
95 views
simple bit manipulation fails
I am learning bit manipulation in C and I have written a simple program. However the program fails. Can someone please look into this code?
Basically I want to extract and reassemble a 4 byte 'long' ...
2
votes
1answer
82 views
Proper way to find IPv6 in CIDR Range MySQL
I have a MySQL blacklist table, with either single IPv4, IPv6 or CIDR ranges of one of both types stored in it.
My table looks somewhat like this:
+-----------+-------------+
| Name | Type ...
2
votes
6answers
59 views
Bit manipulation Hexadecimal C++
I have an unsigned int and a hex value. I want to be able to check if the unsigned int contains the hex value; e.g:
unsigned int reason = 0x80020002
#define MAJOR_ERROR_CODE 0x00020000
#define ...
1
vote
2answers
60 views
Despite conventional wisdom, using + instead of | to combine bytes into an int always works?
Conventional wisdom has it that when you are ORing bytes together to make an int, you should use the | operator rather than the + operator, otherwise you could have problems with the sign bit.
But ...
3
votes
1answer
117 views
Expand Right Bitwise Algorithm
Originally this post requested an inverse sheep-and-goats operation, but I realized that it was more than I really needed, so I edited the title, because I only need an expand-right algorithm, which ...
2
votes
1answer
91 views
Map the 32bit integers into 32 bins, with 1,2,4..2^31 consecutive integers per bin
For a 32 bit integer, divide it into 32 bins of consecutive integers such that there are twice as many integers in each successive bin. The first bin contains 0, the second 0..1, etc up to 0..2^31-1.
...
1
vote
0answers
29 views
Inferring simplest method to convert bit array 1 to bit array 2
Consider the set of all bit arrays of length n. Now consider the set of all 1-to-1 functions that map from this set to this set.
Now select a single function out of the latter set. Is there any ...
0
votes
1answer
34 views
Collision detection on chip8 emulator
I made a chip8 emulator, but ran into some problems with detecting collision when drawing. Chip8 draws onto the screen by XOR'ing individual pixels onto the screen, and setting a flag if a pixel is ...
1
vote
3answers
81 views
c++ bit operations how to print out 16, 32 bits
at the moment I have script which prints out numeric values into bits so for example
print((short) 1);
I get a value of 00000001, but how can I get for this a value like 00000001 00000000 and in ...
0
votes
1answer
60 views
Iterating through a bit sequence and finding each set bit
My question is more or less what's in the title; I'm wondering if there's a fast way to going through a sequence of bits and finding each bit that's set.
More detailed information:
I'm currently ...
1
vote
2answers
85 views
Verilog access specific bits
I have problem in accessing 32 most significant and 32 least significant bits in Verilog. I have written the following code but I get the error "Illegal part-select expression" The point here is that ...
3
votes
3answers
109 views
Stealing bits from an IEEE 754 double
What are the effects on floating-point math likely to be if the least-significant bit(s) of the significand is(/are) set to a random value?
Explanation:
The language PicoLisp allocates all values ...
0
votes
1answer
22 views
php class constants with bitvalues
Can classes have bitshifted values defined as class constants / static variables ?
I want to implement a permission system similar to the one described here ...
0
votes
2answers
29 views
How to divide a byte array into bit places
How can i store two numbers in a byte array or set the bits at diffrent positions?
like divide the array in two blocks.
one block of 5 bits and second of 3 positions.
so storing 6 and 3 would look ...
1
vote
2answers
42 views
Bitwise left shifting unexpected result
I found some wired problems when I tried to do left shift for 32 times. The code in the test function should print the same results of 0x0, but I got "ffffffff, 0" instead. Anybody could give a hint ...
0
votes
2answers
94 views
Reading/Writing only part of a 8-bit register VERILOG
So I have a 8-bit Counter, and it stores 0-255.
In a nutshell, in case my explanation isn't sufficient. I have a value ABCDEFGH which is composed of 8 bits. Is there a way to read ABCD or EFGH? Also, ...
1
vote
4answers
54 views
How to do bitwise ANDING in c using just ~ and |
I need to make a function using just ~ and |,
such that function f(6, 5) will return 4 as the answer.
2
votes
2answers
37 views
Generate matrix of bits
I would like to take an integer n defining the number of bits in my communication code and a vector defining the alphabet I am assigning to bits 0:n-1, and output a matrix/cell array containing the ...
1
vote
1answer
51 views
Why does a right shift on a signed integer causes an overflow?
Given any 8 bits negative integer (signed so between -1 and -128), a right shift in HLA causes an overflow and I don't understand why. If shifted once, it should basically divide the value by 2. This ...
2
votes
1answer
64 views
rails 3 best practice for handling attribute with fixed possibilities
For example if I have an attribute that is limited to a short list of values like:
ways = {:way_1 => 1, :way_2 => 2, :way_3 => 3}
What is the best practice for handling this attribute, for ...
0
votes
1answer
45 views
Division by Multiplication and Shifiting
Why when you use the multiplication/shift method of division (for instance multiply by 2^32/10, then shift 32 to the right) with negative numbers you get the expected result minus one?
For instance, ...
0
votes
1answer
58 views
Bit functions in Think Pascal
I am converting an old program written on Mac Think Pascal to Pascal on Windows. Think Pascal has functions for bit manipulations, such as
btst(n, i : longint) : boolean
bitxor(i, j : longint) : ...
0
votes
3answers
64 views
Toggling a bit in a bitmap of chars
Suppose I have a bitmap like this:
sizeofBitmapInBits = 16; // must be multiple of 8
char* bitmap = new char[sizeofBitmapInBits/8](); // 2 bytes
And I want to toggle a single bit of this bitmap, ...
-2
votes
2answers
88 views
Strange in c left bitshift [duplicate]
I am trying to do left shift bit in c.
int a = 32;
printf("%d\n", ~0 << a);
printf("%d\n", ~0 << 32);
So I run above 2 printf()s, the result is different. I use dev-C++. I ...


