_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));
}