Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
311 views

What does this C# code do?

I got some inherited code and can't figure out one piece of it: byte[] b = new byte[4] { 3, 2, 5, 7 }; int c = (b[0] & 0x7f) << 24 | b[1] << 16 | b[2] << 8 | b[3]; Can anyone ...
6
votes
7answers
1k views

writing 'bits' to c++ file streams

How can i write 'one bit' into a file stream or file structure each time? is it possible to write to a queue and then flush it ? is it possible with c# or java? this was needed when i try to implement ...
5
votes
4answers
168 views

Algorithm for bitwise fiddling

If I have a 32-bit binary number and I want to replace the lower 16-bit of the binary number with a 16-bit number that I have and keep the upper 16-bit of that number to produce a new binary number.. ...
2
votes
7answers
375 views

Removing lowest order bit

Given a binary number, what is the fastest way of removing the lowest order bit? 01001001010 -> 01001001000 It would be used in code to iterate over the bits of a variable. Pseudo-code follows. ...