Tagged Questions
The bit tag has no wiki summary.
35
votes
16answers
1k views
Why is number of bits always(?) a power of two?
We have 8-bit, 16-bit, 32-bit and 64-bit hardware architectures and operating systems. But not, say, 42-bit or 69-bit ones.
Why? Is it something fundamental that makes 2^n bits a better choice, or is ...
15
votes
6answers
9k views
C/C++: Force Bit Field Order and Alignment
I read that the order of bit fields within a struct is platform specific. What about if I use different compiler-specific packing options, will this guarantee data is stored in the proper order as ...
15
votes
4answers
5k views
Imply bit with constant 1 or 0 in SQL Server
Is it possible to express 1 or 0 as a bit when used as a field value in a select statement?
e.g.
In this case statement (which is part of a select statement) ICourseBased is of type int.
case
when ...
9
votes
4answers
303 views
9
votes
6answers
13k views
What is the difference between BIT and TINYINT in MySQL?
In which cases would you use which? Is there much of a difference? Which I typically used by persistence engines to store booleans?
8
votes
6answers
293 views
What exactly is a byte and what does it have to do with binary?
I'm just learning about binary and bytes. I understand that 8 bits make up a byte and that a byte can have 256 possibilities. The thing I am confused about is this:
byte[] b = new byte[] { 85, 85, ...
8
votes
1answer
222 views
What is the most efficient way in Java to pack bits into byte[] and read it back?
I currently use these two functions to pack and read bits in a byte array. Wondering if anybody has any better ideas or faster ways to do it?
Edited the program with a few more optimization and ...
8
votes
5answers
825 views
fastest way to atomically compare two integers in C?
uint64_t n; // two 32-bit integers
return ( (uint32_t)(n >> 32) == (uint32_t)n );
What is the fastest way to atomically compare the 32 most-significant bits to the 32 least-significant ...
8
votes
5answers
403 views
Bitwise operator for simply flipping all bits in an integer?
I have to flip all bits in a binary representation of an integer. Given:
10101
The output should be
01010
What is the bitwise operator to accomplish this when used with an integer? For example, ...
8
votes
4answers
5k views
C/C++ efficient bit array
Can you recommend efficient/clean way to manipulate arbitrary length bit array?
right now I am using regular int/char bitmask, but those are not very clean when array length is greater than datatype ...
8
votes
4answers
3k views
Switch on Enum (with Flags attribute) without declaring every possible combination?
how do i switch on an enum which have the flags attribute set (or more precisly is used for bit operations) ?
I want to be able to hit all cases in a switch that matches the values declared.
The ...
7
votes
2answers
268 views
Bit order in C/C++
I have to implement a protocol which defines data in 8bit words, which starts with the least significant bit (LSB) first. I want to realize this data with unsigned char, but I don't know what's the ...
7
votes
3answers
595 views
Do gamma rays from the sun really flip bits every once in a while? [closed]
Possible Duplicate:
Cosmic Rays: what is the probability they will affect a program?
Is this just a tongue in cheek expression or is this really true, and if so, what precautions should we ...
7
votes
7answers
827 views
Is a logical right shift by a power of 2 faster?
I would like to know if performing a logical right shift is faster when shifting by a power of 2. I am using C++.
For example, is
myUnsigned >> 4
any faster than
myUnsigned >> 3
I ...
7
votes
7answers
12k views
7
votes
6answers
3k views
toggle two bits with a single operation in C?
Lets say I have a byte with 6 unknown values:
???1?0??
and I want to swap bits 2 and 4 (without changing any of the ? values):
???0?1??
But how would I do this in one operation in C?
I'm ...
6
votes
4answers
138 views
Bit operation question
Is there a way to find the bit that has been set the least amount of times from using only bit operations?
For example, if I have three bit arrays:
11011001
11100000
11101101
the bits in ...
6
votes
2answers
298 views
Logical Right Shift on negative integers in C?
How does one go about doing a logical right shift of negative numbers in C? Basically I am looking for the C equivalent of >>> in java
i.e.
int one = -16711936 ;
//int two = ...
6
votes
7answers
1k views
C#. Fastest way to calculate sum of bits in byte array
I have two byte arrays with the same length. I need to perform XOR operation between each byte and after this calculate sum of bits.
For example:
11110000^01010101 = 10100101 -> so 1+1+1+1 = 4
...
6
votes
9answers
460 views
Bit Array in C++
When working with Project Euler problems I often need large (> 10**7) bit array's.
My normal approach is one of:
bool* sieve = new bool[N];
bool sieve[N];
When N = 1,000,000 my program uses 1 ...
6
votes
6answers
6k views
Why byte b = (byte) 0xFF is equals to integer -1?
Why byte b = (byte) 0xFF is equal to integer -1?
Ex:
int value = byte b = (byte) 0xFF;
System.out.println(value);
it will print -1?
6
votes
11answers
1k views
What USEFUL bitwise operator code tricks should a developer know about?
I must say I have never had cause to use bitwise operators, but I am sure there are some operations that I have performed that would have been more efficiently done with them. How have "shifting" and ...
6
votes
5answers
2k views
Start Bit vs Start Byte
I know in a lot of asynchronous communication, the packet begins starts with a start bit.
But a start bit is just a 1 or 0. How do you differentiate a start bit from the end bit from the last ...
5
votes
2answers
150 views
Algorithm for bit expansion/duplication?
Is there an efficient (fast) algorithm that will perform bit expansion/duplication?
For example, expand each bit in an 8bit value by 3 (creating a 24bit value):
1101 0101 => 11111100 01110001 ...
5
votes
2answers
93 views
Bit hack to generate all integers with a given number of 1s
I forgot a bit hack to generate all integers with a given number of 1s. Does anybody remember it (and probably can explain it also)?
5
votes
9answers
168 views
How to check if a particular bit is set in C#
In C#, I have a a 32 bit value which I am storing in an int. I need to see if a particular bit is set. The bit I need is 0x00010000.
I came up with this solution:
Here is what I am looking for:
...
5
votes
5answers
116 views
Is it fastest to access a byte than a bit? Why?
The question is very straight: is it fastest to access a byte than a bit? If I store 8 booleans in a byte will it be slower when I have to compare them than if I used 8 bytes? Why?
5
votes
6answers
307 views
Testing for bitwise Enum values
I haven't really used bitwise enums before, and I just want to make sure my testing is correct. I am most interested in testing for the values None and All. We receive data from a webservice that ...
5
votes
4answers
615 views
Divide by 10 using bit shifts?
Is it possible to divide an unsigned integer by 10 by using pure bit shifts, addition, subtraction and maybe multiply? Using a processor with very limited resources and slow divide.
5
votes
3answers
307 views
Python Number Limit
I know in most, if not all programming languages, integers, floats etc all have a maximum amount they can hold, either unsigned or signed. Eg pascal's int type can only hold up to 32768 ~.
What i ...
5
votes
3answers
390 views
Converting C++ Bit Pattern to Java
I am converting a C++ program to Java and got completely stuck in the following method which blew my mind. Would you be kind enough to explain what this method is doing?
long ...
4
votes
1answer
139 views
The C standard's word on the switch statement
Consider this code example:
char c = 0xff;
char mask = 0xfe;
switch ((unsigned)(c & mask)) {
case -2: /* do task 1 */ break;
default: /* do task 2 */
}
Let us assume that CHAR_BIT = 8 and the ...
4
votes
5answers
60 views
Bits vs Char - What's the best way to store 3 mutually exclusive flags?
I've got a table which is set to keep track of various items. Among other properties, items can be either A, B, or C, each mutually exclusive of the rest. Is it best practice to store this ...
4
votes
2answers
450 views
Check value of least significant bit (LSB) and most significant bit (MSB) in C/C++
I need to check the value of the least significant bit (LSB) and most significant bit (MSB) of an integer in C/C++. How would I do this?
4
votes
2answers
66 views
Is there such a thing as a proper `bit` in JavaScript?
I know that there is a Boolean object in JavaScript, but I'm wondering if there is a way to access the metal, the raw single bit that lives at the heart of this Boolean object.
4
votes
4answers
139 views
Moving a bit within a byte using bitfield or bitwise operators
Is there an elegant way of moving a bit within a byte (or word/long). For simplicity, lets use a simple 8-bit byte and just one bit to move within the byte.
Given a bit number, based on 0-7 ...
4
votes
9answers
263 views
Where to learn about “bit”?
I am trying to find some books or resources talking about bit in detail so that for example I would be able to translate a number (like 16) into bits. I am currently a high school student and whenever ...
4
votes
3answers
365 views
Convert bit array to uint or similar packed value
I have a large array of booleans, and I want to pack/unpack them into a uint or similar value. How can I do this in C#?
4
votes
1answer
182 views
How does SQL server compress NULL bit datatypes? [closed]
Possible Duplicate:
Can Microsoft store three-valued fields in a single bit?
According to the documentation for bit, the bit datatype can have three values, 0, 1 and NULL and if there are 8 ...
4
votes
8answers
447 views
return 1 if any bits in an integer equal 1 using bit operations in C
I've been thinking about this problem for hours. Here it is:
write an expression that returns 1 if a given integer "x" has any bits equal to 1. return 0 otherwise.
I understand that I'm essentially ...
4
votes
2answers
1k views
Convert a byte into a boolean array of length 4 in Java
I need to convert a byte into an array of 4 booleans in Java. How might I go about this?
4
votes
3answers
358 views
How to Compare Flags in C#? (part 2)
Bit flags are a little difficult to understand :)
I know about this and this questions and I do understand the answers and I even followed this article from a good friend of mine.
But I still cant ...
4
votes
12answers
3k views
Where can I find a bit shifting guide for C?
I have looked at http://stackoverflow.com/questions/141525/absolute-beginners-guide-to-bit-shifting but I still find the concept of bit shifting difficult to understand.
Can someone point me in the ...
4
votes
6answers
4k views
3
votes
3answers
234 views
Bit parity code for odd number of bits
I am trying to find the parity of a bitstring so that it returns 1 if x has an odd # of 0's.
I can only use basic bitwise operations and what I have so far passes most of the tests, but I'm wondering ...
3
votes
4answers
218 views
Bit manipulation of chars in Java or C
I am a student trying to implement the DES algorithm.
I have a choice of 2 languages: C & Java.
I did understand the algorithm, but am stuck at the very beginning as to manipulation of the key.
...
3
votes
3answers
112 views
Enum bit fields that support inheritance
I apologize for the Title of this Question, but I couldn't think of a better way to describe what I'm trying to accomplish..
I want to make an Enum using the Flags attribute whereby the bitwise ...
3
votes
5answers
180 views
Best way to store long binary (up to 512 bit) in C#
I'm trying to figure out the best way to store large binary (more than 96 bit) numbers in C#
I'm building application that will automatically allocate workers for shifts. Shifts can be as short as 15 ...
3
votes
2answers
110 views
How to fetch a bit in IA32 assembly language?
How can I check if a bit in some position of a word is 1 with the IA32 assembly language?
3
votes
1answer
178 views
What's the difference between these two enum [Flags] declarations (C#)
This is more a question I'm asking to understand rather than figure out a problem. Consider the following two:
[Flags]
public enum Flags
{
NONE = 0x0,
PASSUPDATE = 0x1,
...