2
votes
7answers
155 views
Bit Hack - Round off to multiple of 8
can anyone please explain how this works (asz + 7) & ~7; It rounds off asz to the next higher multiple of 8.
It is easy to see that ~7 produces 11111000 (8bit representation) …
0
votes
4answers
52 views
How do I simulate a bitwise rotation of a 64-bit (unsigned) integer in JavaScript?
I need to perform a circular left shift of a 64-bit integer in JavaScript. However:
JavaScript numbers are doubles
JavaScript converts them to 32-bit signed ints when you start …
1
vote
3answers
54 views
Best Book on Bit Magic
Hi,
I'm continiously impressed with the bitmagic used in chess engines, 3dgames and other highly optimized codebases.
I've tried to read about IEEE and the article at topcoder, but …
1
vote
1answer
71 views
Do bitwise operations distribute over addition?
I'm looking at an algorithm I'm trying to optimize, and it's basically a lot of bit twiddling, followed by some additions in a tight feedback. If I could use carry-save addition …
3
votes
10answers
167 views
How to think of bit operations for simple operations?
for example:
unsigned int a; // value to merge in non-masked bits
unsigned int b; // value to merge in masked bits
unsigned int mask; // 1 where bits from b should be select …
8
votes
8answers
335 views
Rotating a bitmap 90 degrees
I have a one 64-bit integer, which I need to rotate 90 degrees in 8 x 8 area (preferably with straight bit-manipulation). I cannot figure out any handy algorithm for that. For inst …
3
votes
6answers
287 views
What is a better method for packing 4 bytes into 3 than this?
I have an array of values all well within the range 0 - 63, and decided I could pack every 4 bytes into 3 because the values only require 6 bits and I could use the extra 2bits to …
1
vote
2answers
96 views
Find min/max of a float/double that has the same internal representation
Refreshing on floating points (also PDF), IEEE-754 and taking part in this discussion on floating point rounding when converting to strings, brought me to tinker: how can I get the …
9
votes
9answers
1k views
Branchless code that maps zero, negative, and positive to 0, 1, 2
Write a branchless function that returns 0, 1, or 2 if the difference between two signed integers is zero, negative, or positive.
Here's a version with branching:
int Compare(int …
3
votes
6answers
224 views
How many 1s in an n-bit integer?
An interesting problem I ran into today: what is the fastest way to count the number of 1s in an n-bit integer? Is it possible to beat O(n)?
For example:
42 = 0b101010 => 3 on …
2
votes
7answers
419 views
Find if a num is a power of 2 fast. [closed]
Possible Duplicate:
How to check if a number is a power of 2
What would break if i just checked if the Least Significant Bit? If LSB = 1, false else true?
2
votes
7answers
131 views
Counting common bits in a sequence of unsigned longs
I am looking for a faster algorithm than the below for the following. Given a sequence of 64-bit unsigned integers, return a count of the number of times each of the sixty-four bit …
2
votes
6answers
121 views
Find “edges” in 32 bits word bitpattern
Im trying to find the most efficient algorithm to count "edges" in a bit-pattern. An edge meaning a change from 0 to 1 or 1 to 0. I am sampling each bit every 250 us and shifting i …
84
votes
15answers
12k views
How do you set, clear and toggle a single bit in C?
How to set, clear and toggle a bit in C?
2
votes
3answers
87 views
Bit shifting in internet checksums.
This is almost certainly a very silly question, but for some reason I'm having trouble with internet checksum calculations. All of the algorithms basically look something like thi …
