__shiftleft128
Microsoft 전용
두 개의 64비트 수량 LowPart 및 HighPart로 표현되는 128비트 수량을 Shift로 지정된 비트 수만큼 왼쪽으로 이동하고 결과 중 상위 64비트를 반환합니다.
unsigned __int64 __shiftleft128(
unsigned __int64 LowPart,
unsigned __int64 HighPart,
unsigned char Shift
);
매개 변수
[in] LowPart
이동할 128비트 수량 중 하위 64비트입니다.[in] HighPart
이동할 128비트 수량 중 상위 64비트입니다.[in] Shift
이동할 비트 수입니다.
반환 값
결과의 상위 64비트입니다.
요구 사항
내장 함수 |
아키텍처 |
---|---|
__shiftleft128 |
x64 |
헤더 파일 <intrin.h>
설명
Shift 값은 항상 64로 나눈 나머지이므로 예를 들어 __shiftleft128(1, 0, 64)를 호출하면 함수는 하위 부분의 0비트를 왼쪽으로 이동하고 일반적인 경우에 반환되는 1이 아닌 상위 부분 0을 반환합니다.
예제
// shiftleft128.c
// processor: IPF, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic (__shiftleft128, __shiftright128)
int main()
{
unsigned __int64 i = 0x1I64;
unsigned __int64 j = 0x10I64;
unsigned __int64 ResultLowPart;
unsigned __int64 ResultHighPart;
ResultLowPart = i << 1;
ResultHighPart = __shiftleft128(i, j, 1);
// concatenate the low and high parts padded with 0's
// to display correct hexadecimal 128 bit values
printf_s("0x%02I64x%016I64x << 1 = 0x%02I64x%016I64x\n",
j, i, ResultHighPart, ResultLowPart);
ResultHighPart = j >> 1;
ResultLowPart = __shiftright128(i, j, 1);
printf_s("0x%02I64x%016I64x >> 1 = 0x%02I64x%016I64x\n",
j, i, ResultHighPart, ResultLowPart);
}