__shiftleft128
Specyficzne dla firmy Microsoft
Przesuwa 128-bitową ilość reprezentowaną jako dwie ilości LowPart
64-bitowe i HighPart
, po lewej stronie o liczbę bitów określonych przez Shift
i zwraca wysokie 64 bity wyniku.
Składnia
unsigned __int64 __shiftleft128(
unsigned __int64 LowPart,
unsigned __int64 HighPart,
unsigned char Shift
);
Parametry
LowPart
[in] Niskie 64 bity 128-bitowej ilości do przesunięcia.
HighPart
[in] Wysokie 64 bity 128-bitowej ilości do przesunięcia.
Zmiana
[in] Liczba bitów do przesunięcia.
Wartość zwracana
Wysokie 64 bity wyniku.
Wymagania
Nieodłączny | Architektura |
---|---|
__shiftleft128 |
x64 |
Plik<nagłówka intrin.h>
Uwagi
Wartość Shift jest zawsze modulo 64, aby na przykład, jeśli wywołasz __shiftleft128(1, 0, 64)
metodę , funkcja będzie przesuwać małe bity części 0
w lewo i zwracać dużą część0
, a nie 1
tak, jak w przeciwnym razie można się spodziewać.
Przykład
// 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
END Microsoft Specific