This might be a dumb question, but does anyone know of a bitwise shift shortcut using either a single addition or subtraction?

I specifically need to perform both a >>2 and <<2 shift, or in simpler words, shift left or right 2 bits, without having to shift and rotate to another variable twice.

Comments