Re: bit shifts by multiple bytes

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



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


.



Relevant Pages

  • Re: bit shifts by multiple bytes
    ... 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. ... You have a function composed of two parts: how many whole bytes will you shift followed by how many remainder bits will you shift. ... 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. ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: How to parse a "line"?
    ... array, and then drop the first without creating an extra object. ... Note that you made ruby go through the laborious chore of shifting every ... I'm not sure if shift really moves everything, ... A Look into Japanese Ruby List in English ...
    (comp.lang.ruby)
  • Re: How to parse a "line"?
    ... array, and then drop the first without creating an extra object. ... Note that you made ruby go through the laborious chore of shifting every ... I'm not sure if shift really moves everything, ...
    (comp.lang.ruby)
  • bit shifts by multiple bytes
    ... 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. ... 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? ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: circular shift array
    ... What is a simple way to shift the elements in an array, ... there a way to do it so that you don't need a separate storage array? ... In addition, sometimes shifting might not be required, like shifting 8 ...
    (comp.lang.c)