__shiftleft128
Specyficzne dla firmy Microsoft
Przenosi ilość 128-bitowej, reprezentowany jako dwa 64-bitowe ilości LowPart i HighPart, z lewej strony przez liczbę bitów określonych przez Shift i zwraca 64 bitów wyniku.
unsigned __int64 __shiftleft128(
unsigned __int64 LowPart,
unsigned __int64 HighPart,
unsigned char Shift
);
Parametry
[w]LowPart
64 bity małej ilości 128-bitowego przesunięcia.[w]HighPart
Wysoki 64 bity ilości 128-bitowego przesunięcia.[w]Shift
Liczba bitów przesunięcia.
Wartość zwracana
Wysoki 64 bity wyniku.
Wymagania
Wewnętrzne |
Architektura |
---|---|
__shiftleft128 |
x64 |
Plik nagłówka < intrin.h >
Uwagi
Shift Wartość jest zawsze modulo 64 tak, na przykład, jeśli dzwonisz __shiftleft128(1, 0, 64), funkcja przesunie małej części 0 bitów w lewo i zwracają wysoki część 0 i nie 1 , a 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);
}