_BitScanReverse、_BitScanReverse64
Microsoft 固有の仕様
マスク データの最上位ビット (MSB) から最下位ビット (LSB) に向かって設定済みビット (1) を検索します。
構文
unsigned char _BitScanReverse(
unsigned long * Index,
unsigned long Mask
);
unsigned char _BitScanReverse64(
unsigned long * Index,
unsigned __int64 Mask
);
パラメーター
インデックス
[out] 最初に見つかった設定済みビット (1) のビット位置が読み込まれます。 それ以外の場合は、定義されません。
Mask
[in] 検索する 32 ビットまたは 64 ビットの値。
戻り値
Mask
でビットが設定されている場合は 0 以外、セット ビットが見つからなかった場合は 0。
要件
Intrinsic | Architecture | ヘッダー |
---|---|---|
_BitScanReverse |
x86、ARM、x64、ARM64 | <intrin.h> |
_BitScanReverse64 |
ARM64、x64 | <intrin.h> |
例
// BitScanReverse.cpp
// compile with: /EHsc
#include <iostream>
#include <intrin.h>
using namespace std;
#pragma intrinsic(_BitScanReverse)
int main()
{
unsigned long mask = 0x1000;
unsigned long index;
unsigned char isNonzero;
cout << "Enter a positive integer as the mask: " << flush;
cin >> mask;
isNonzero = _BitScanReverse(&index, mask);
if (isNonzero)
{
cout << "Mask: " << mask << " Index: " << index << endl;
}
else
{
cout << "No set bits found. Mask is zero." << endl;
}
}
12
Enter a positive integer as the mask:
Mask: 12 Index: 3
Microsoft 固有の仕様はここまで