_rotr8, _rotr16
Microsoft-spezifisch
Drehen Sie die Eingabewerte nach rechts um eine bestimmte Anzahl von Bitpositionen zu dem unwichtigsten Bit.
Syntax
unsigned char _rotr8(
unsigned char value,
unsigned char shift
);
unsigned short _rotr16(
unsigned short value,
unsigned char shift
);
Parameter
value
[in] Der wert, der gedreht werden soll.
shift
[in] Die Anzahl der zu drehenden Bits.
Rückgabewert
Der gedrehte Wert.
Anforderungen
Intrinsic | Aufbau |
---|---|
_rotr8 |
x86, ARM, x64, ARM64 |
_rotr16 |
x86, ARM, x64, ARM64 |
Headerdatei<intrin.h>
Hinweise
Im Gegensatz zu einem Rechtsverschiebungsvorgang werden beim Ausführen einer rechten Drehung die Bits mit niedriger Reihenfolge, die vom unteren Ende fallen, in die Bitpositionen mit hoher Reihenfolge verschoben.
Beispiel
// rotr.cpp
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(_rotr8, _rotr16)
int main()
{
unsigned char c = 'A', c1, c2;
for (int i = 0; i < 8; i++)
{
printf_s("Rotating 0x%x right by %d bits gives 0x%x\n", c,
i, _rotr8(c, i));
}
unsigned short s = 0x12;
int nBit = 10;
printf_s("Rotating unsigned short 0x%x right by %d bits "
"gives 0x%x\n",
s, nBit, _rotr16(s, nBit));
}
Rotating 0x41 right by 0 bits gives 0x41
Rotating 0x41 right by 1 bits gives 0xa0
Rotating 0x41 right by 2 bits gives 0x50
Rotating 0x41 right by 3 bits gives 0x28
Rotating 0x41 right by 4 bits gives 0x14
Rotating 0x41 right by 5 bits gives 0xa
Rotating 0x41 right by 6 bits gives 0x5
Rotating 0x41 right by 7 bits gives 0x82
Rotating unsigned short 0x12 right by 10 bits gives 0x480
Ende Microsoft-spezifisch