共用方式為


_rotr8 _rotr16

Microsoft 特定的

依指定的位元位置數目,將輸入值旋轉至最低有效位元 (LSB) 的右方。

unsigned char _rotr8( 
   unsigned char value, 
   unsigned char shift 
);
unsigned short _rotr16( 
   unsigned short value, 
   unsigned char shift 
);

參數

  • [in] value
    要旋轉的值。

  • [in] shift
    要旋轉的位元數。

傳回值

旋轉的值。

需求

內建

架構

_rotr8

x86、ARM、x64

_rotr16

x86、ARM、x64

標頭檔 <intrin.h>

備註

與向右移位作業不同,執行向右旋轉時,落於低端的低序位位元會移入高序位位元位置。

範例

// 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));
}
  

請參閱

參考

_rotl8 _rotl16

編譯器內建