Re: bit shifts by multiple bytes
- From: "Nick Malik [Microsoft]" <nickmalik@xxxxxxxxxxxxxxxxxx>
- Date: Wed, 15 Mar 2006 00:44:35 -0800
Hi Lee,
"Lee Crabtree" <lcrabtree@xxxxxxxxx> wrote in message
news:eXjBUt4RGHA.4264@xxxxxxxxxxxxxxxxxxxxxxx
I 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
.
- Follow-Ups:
- Re: bit shifts by multiple bytes
- From: Lee Crabtree
- Re: bit shifts by multiple bytes
- References:
- bit shifts by multiple bytes
- From: Lee Crabtree
- bit shifts by multiple bytes
- Prev by Date: Re: bit shifts by multiple bytes
- Next by Date: Re: C# connection and file access question
- Previous by thread: Re: bit shifts by multiple bytes
- Next by thread: Re: bit shifts by multiple bytes
- Index(es):
Relevant Pages
|