_BitScanReverse _BitScanReverse64
Microsoft 特定的
從遮罩資料的最高有效位元 (MSB) 到最低有效位元 (LSB) 搜尋設定位元 (1)。
unsigned char _BitScanReverse( unsigned long * Index, unsigned long Mask ); unsigned char _BitScanReverse64( unsigned long * Index, unsigned __int64 Mask );
參數
[輸出] Index
會使用找到的第一個設定位元 (1) 的位元位置載入。[in] Mask
要搜尋的 32 位元或 64 位元值。
傳回值
如果已設定 Index 則為非零,如果找不到設定位元則為 0。
需求
內建 |
架構 |
頁首 |
---|---|---|
_BitScanReverse |
x86、ARM、x64 |
<intrin.h> |
_BitScanReverse64 |
ARM、x64 |
範例
// 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