自己搜索到了,用英语关键字搜索就找到了。
// leftrotate function definition
#define LEFTROTATE(x, c) (((x) << (c)) | ((x) >> (32 - (c))))
【 在 javame 的大作中提到: 】
: static unsigned int rotlFixed(unsigned int x, unsigned int y)
: {
: return y ? _lrotl(x, y) : x;
: ...................
--
FROM 124.78.136.*