Re: bit shifts by multiple bytes
- From: Lee Crabtree <lcrabtree@xxxxxxxxx>
- Date: Wed, 15 Mar 2006 11:20:33 -0600
You're right, I wrote my example backwards. Durr.
In the end, I wound up doing just about the same thing you mentioned. I broke up the bits to be shifted into multiples of bytes, with the remainder being the number of bits to shift in a single byte. Then I added all but one of the new bytes onto the front of the array. The last byte was added to the end, and then it was a matter of moving right to left across the array, using two bytes in a UInt16 at a time to shift.
I realize this is a reasonably pointless post, but anybody who has a similar problem in the future should know that this method works.
Nick Malik [Microsoft] wrote:
Hi Lee,.
"Lee Crabtree" <lcrabtree@xxxxxxxxx> wrote in message news:eXjBUt4RGHA.4264@xxxxxxxxxxxxxxxxxxxxxxxI need to shift all of the values in a byte array by more than 8 bits, meaning that values should flow from one byte to another. Since I don't know in advance how many bits will be shifting, I can't do something easy like putting the bytes into a long or uint and shifting that. Let me give an example:
If I want to shift this:
10010110 00001101
one byte to the right, I need to get:
01001011 00000110 10000000
Now I know how to figure out how many bytes to add onto the end of the array, but how do I shift the bits across bytes, as opposed to just lopping them off?
Lee
First off, in your example, you shifted seven bits to the left, not one byte (8 bits) to the right as you stated.
You have a function composed of two parts: how many whole bytes will you shift followed by how many remainder bits will you shift. If you add the blank bytes to the left (when shifting left), then all remainder bits you shift will be less than 8 (because more than that would register in the number of bytes).
Therefore, I'd start by breaking your starting number into bytes and store each byte in the low order bits of an array of 16 bit words. First add the necessary zero 'words' to the end of the array. Calculate the remainder (modulo). Now, working back from the right to the left,
a) shift the low word n bits to the left
b) copy the result to a 'holding' variable.
c) truncate the high bits of your array word by using AND with 0x00FF
d) logical-right-shift your holding variable one byte to the right. You now have the "overflow" bits in the low order byte.
e) move up to the next word in your array.
f) shift the value there n bits to the left
g) add in the overflow bits by using AND with your holding variable.
h) clear your holding variable.
i) pick up with step (b) and repeat until you reach the (high order byte) in your word array
j) reassemble the original binary value.
--- Nick
- References:
- bit shifts by multiple bytes
- From: Lee Crabtree
- Re: bit shifts by multiple bytes
- From: Nick Malik [Microsoft]
- bit shifts by multiple bytes
- Prev by Date: Re: vb.net to c# eventhandler conversion help
- Next by Date: Re: what does this mean please?
- Previous by thread: Re: bit shifts by multiple bytes
- Next by thread: using enums across a web app
- Index(es):
Relevant Pages
|