/* * 循环左移 */ #define LeftRotate(word, bits) ( (word) << (bits) | (word) >> (32 - (bits)) )
posted on 2014-02-08 13:46 刘宝成 阅读(300) 评论(0) 编辑 收藏 举报