2
votes
5answers
65 views
C unsigned int array and bit shifts
If i have an array of short unsigned ints.
Would shifting array[k+1] left by 8 bits, put 8 bits into the lower half of array[k+1]?
Or do they simply drop off as they have gone ou …
0
votes
2answers
42 views
Atomic bitfield operations on 80x86?
Does 80x86 have instructions for atomically testing and setting individual bits of a word?
2
votes
2answers
72 views
One’s complement instead of just a sum of bits
A question in my university homework is why use the one's complement instead of just the sum of bits in a TCP checksum. I can't find it in my book and Google isn't helping. Any cha …
2
votes
4answers
120 views
Bit/byte conversion
How many bits is a .NET string that's 10 characters in length? (.NET strings are UTF-16, right?)
0
votes
4answers
127 views
Bytes to Binary in C
Hello,
I'm trying to simply convert a byte received from fget into binary.
I know the value of the first byte was 49 based on printing the value. I now need to convert this into …
2
votes
6answers
146 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?
4
votes
5answers
678 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 …
1
vote
1answer
42 views
How can I use mysql bit from using DBIx
Hi,
I am trying to access a mysql bit field in my catalyst app. Here is the table info:
SQL:
create table foo{
...
mybitField bit(1) NOT NULL default b'0'
}
My mapped table: …
3
votes
3answers
160 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. …
1
vote
1answer
72 views
Coverting an integer to bits in ocaml [closed]
This seems like a pretty simple problem, but I'm new to OCaml and need some help with the syntax. I'm representing the bit 0 as false and 1 as true. I need a recursive function tha …
1
vote
7answers
200 views
How can I print a C double bit-by-bit to see the low-level representation?
I want to learn how the computer represents the double type in bit, but the & and | bit operators can't use double. And memcpy(&d, &src, 8) also doesn't seem to work. …
27
votes
14answers
947 views
Why is amount 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 …
1
vote
3answers
97 views
Removing Bit fields in a struct
Hey Folks,
I have a question. I have a legacy application which used bit fields in a structure. Something like this
struct sample
{
BYTE one: 2;
BYTE two : 1;
…
3
votes
7answers
222 views
How are bits stored in memory? (In chunks? Can there be bits of multiple sizes stored toghether?)
I used to think that each memory location contains 8, 16, 32 or 64 bits. So 0101 would be stored in an 8 bit machine as 00000101 (sign extended if it was negative). This was all fi …
0
votes
3answers
101 views
Most significant bit
I haven't dealt with programming against hardware devices in a long while and have forgotten pretty much all the basics.
I have a spec of what I should send in a byte and each bit …
