_rotl8 _rotl16
Microsoft 特定的
將輸入值依指定的位置數目,向左旋轉至最高有效位元 (MSB)。
unsigned char _rotl8(
unsigned char value,
unsigned char shift
);
unsigned short _rotl16(
unsigned short value,
unsigned char shift
);
參數
[in] value
要旋轉的值。[in] shift
要旋轉的位元數。
傳回值
旋轉的值。
需求
內建 |
架構 |
---|---|
_rotl8 |
x86、ARM、x64 |
_rotl16 |
x86、ARM、x64 |
標頭檔 <intrin.h>
備註
與左移位運算不同的是,執行左旋轉運算時,在高位階外的高位位元會移到最低有效位元位置。
範例
// rotl.cpp
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(_rotl8, _rotl16)
int main()
{
unsigned char c = 'A', c1, c2;
for (int i = 0; i < 8; i++)
{
printf_s("Rotating 0x%x left by %d bits gives 0x%x\n", c,
i, _rotl8(c, i));
}
unsigned short s = 0x12;
int nBit = 10;
printf_s("Rotating unsigned short 0x%x left by %d bits gives 0x%x\n",
s, nBit, _rotl16(s, nBit));
}