The manipulation of individual bits. Operators used may include bit-wise and/or (&/|), left-shift (>)

learn more… | top users | synonyms

4
votes
3answers
65 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
52 views

How To Switch A Bit In An Integer?

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
54 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
88 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
0answers
32 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
42 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
57 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
107 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
88 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
23 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
27 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
71 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
54 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
59 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
105 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
21 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
21 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
38 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
67 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
53 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
34 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
41 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
60 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
36 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
48 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
56 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
80 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 ...
0
votes
2answers
90 views

Understanding the bit shifting in C++

I have to debug a C++ code authored by someone else. I have very little experience in bit shifting and hence this question. Here is the modified(values and unrelated code to the bit shifting) version ...
1
vote
2answers
63 views

Converting 14bit to 8 bit and back

I have written some C code where I have a 14-bit number that I want to convert to 2 bit bytes where the two msb's have to be zero. In other words 16383 (In binary 111111111111111) should come out as ...
4
votes
1answer
69 views

Bitwise operations in OCaml

What is the most idiomatic way to write bit-twiddling code in OCaml? I know about the very cool Bitstring library, but while this would be a great way to parse binary data in some protocol, it doesn't ...
-1
votes
2answers
77 views

Bit Operations - Indicating the Sign of a Signed Integer

Why does the following C code not work for returning -1 for negative numbers, 0 for 0s, and 1 for positive numbers? (((x >> 31) ^ -1) + 1) | (!x ^ 1); Specifically, when I pass in negative ...
0
votes
1answer
30 views

Convert signed 13-bit value to signed 16-bit

Is there a prettier way of doing a conversion from a signed 13-bit value to a signed 16-bit value than what i've got below? Both values lies in 16 bit words, the 13-bit value being shifted 3 bits. S ...
0
votes
1answer
38 views

Lua: detect rising/falling edges in a bitfield

I'm calling a function that returns an integer which represents a bitfield of 16 binary inputs each of the colors can either be on or off. I'm trying to create a function to get the changes between ...
6
votes
2answers
134 views

Mean of two ints (or longs) without overflow, truncating towards 0

I'd like a way to calculate (x + y)/2 for any two integers x, y in Java. The naive way suffers from issues if x+y > Integer.MAX_VALUE, or < Integer.MIN_VALUE. Guava IntMath uses this technique: ...
0
votes
3answers
105 views

Multiplying two variables using bit shift operation

I have two variables(which are actually elements of two different matrices). For example i want to multiply a[i][k]*b[k][j] using bit manipulation, how can i do that. I saw references to ...
0
votes
4answers
88 views

C: Use 8 bits of char for a full int

I'm trying to convert the 8 bits of a char to the least significant bits of an int. I know that the conversion from char to int is easy doable via int var = (int) var2; where var2 is of type char ...
0
votes
1answer
60 views

PostgreSQL: bit to smallint

As far as I was able to understand in PostgreSQL you are not able to convert from hex or bit to smallint or the other way around. To convert from int2 to bit16 one can do something like this: select ...
2
votes
1answer
81 views

Put 7 char into an array of 2 unsigned short

I have trouble with figuring out how to put 9 char into an array of 4 unsigned short in c programming. I know that a char is 1 byte, but only 7 bits are used because ascii table are 0 ~ 127, so I ...
3
votes
1answer
35 views

Visual basic: Variable assignment with OR

I don't understand what the OR statement do in this sample of code. DE.Properties("UserAccountControl").Value = CInt(DE.Properties("UserAccountControl").Value) Or ...
0
votes
1answer
76 views

C: bit operations on a variable-length bit string

I'm doing some bit operations on a variable-length bit string. I defined a function setBits(char *res, int x, int y) that should work on that bit string passed by the *res variable, given a x and y ...
-3
votes
1answer
63 views

Why modulo equal to & for values of base 2? [closed]

It is commonly used in java.util.HashMap /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } where length is base 2. Or Lucene bloom ...
0
votes
1answer
81 views

How to transform one integer into two and to inverse the transformation easily?

I have a couple of integer (x,y) where 0 < y <= x <= 6. I need to store them into one column only, named z. I want to have the three functions F1, F2, F3 to solve this : z=F1(x,y) ...
3
votes
2answers
46 views

Obtain a specific subset of bits of an int in Java

How would I obtain a specific subset, say bits 5-10, of an int in Java? Looking for a method where one can pass in specific bit positions. I'm not sure how I would create a mask that changes given ...
2
votes
0answers
59 views

Randomization using hash() method in Java HashMap [closed]

In the HashMap implementation in Java, after computing the hash value of the key object, I guess that the function, hash(int hashvalue), is used on it to further randomize the hash values generated. ...
1
vote
3answers
45 views

Packaging values in DWORD

How would I package two unsigned short (WORD) values into one unsigned long (DWORD) value? I know how to get them using HIWORD and LOWORD macros but is there a ... sort of reverse macro for storing ...
0
votes
5answers
70 views

Restricting Binary Output to 8 bits or 4 bits

Here is my FIRST Question Here is my code: public class Bits{ public static void main(String args[]){ int i = 2 , j = 4; int allOnes = ~0; int left = allOnes << (j+1); ...
0
votes
3answers
88 views

How to sign extend a 9-bit value when converting from an 8-bit value?

I'm implementing a relative branching function in my simple VM. Basically, I'm given an 8-bit relative value. I then shift this left by 1 bit to make it a 9-bit value. So, for instance, if you were ...
3
votes
3answers
220 views

How can i swap two bits of integer in java?

is there a built in function in java that i could use to swap to bits for example: _ _ _ _ 1 _ _ 0 bit 3 swapped with bit 0 and becomes _ _ _ _ 0 _ _ 1 i know it can be done using long ...
3
votes
4answers
88 views

Changing a bit within a byte in java

So I understand how to change an individual bit within a byte, what I am not sure is why my particular code is not working. public static void setBit(byte[] input, int position, int value) { int ...
1
vote
2answers
67 views

Arduino: Printing ASCII characters to LEDs / pointer weirdness

I've made a 24 x 15 LED matrix using TLC5940s and shift registers, running on an Arduino Due. First thing first, I want to print an ASCII char, eg. 'A' directly to the display. So I stored a font ...

1 2 3 4 5 25