Forked from azeey/C code which reverses the bits in a word
Created
April 16, 2010 05:06
-
-
Save BH1SCW/368031 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n = ((n >> 1) & 0x55555555) | ((n << 1) & 0xaaaaaaaa); | |
n = ((n >> 2) & 0x33333333) | ((n << 2) & 0xcccccccc); | |
n = ((n >> 4) & 0x0f0f0f0f) | ((n << 4) & 0xf0f0f0f0); | |
n = ((n >> 8) & 0x00ff00ff) | ((n << 8) & 0xff00ff00); | |
n = ((n >> 16) & 0x0000ffff) | ((n << 16) & 0xffff0000); | |
// -- C code which reverses the bits in a word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment