__shiftleft128
Microsoft 专用
将 128 位数量(表示为两个 64 位数量 LowPart
和 HighPart
)按 Shift
指定的位数左移,返回高 64 位结果。
语法
unsigned __int64 __shiftleft128(
unsigned __int64 LowPart,
unsigned __int64 HighPart,
unsigned char Shift
);
参数
LowPart
[in] 要位移的 128 位数量的低 64 位。
HighPart
[in] 要位移的 128 位数量的高 64 位。
Shift
[in] 要位移的位数。
返回值
高 64 位的结果。
要求
Intrinsic | 体系结构 |
---|---|
__shiftleft128 |
x64 |
头文件<intrin.h>
备注
Shift 值始终是模 64,如果调用 __shiftleft128(1, 0, 64)
,该函数将向左位移低部分 0
位并返回高部分的 0
而不是另外预期的 1
。
示例
// 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);
}
0x100000000000000001 << 1 = 0x200000000000000002
0x100000000000000001 >> 1 = 0x080000000000000000
结束 Microsoft 专用