_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
[out] 찾은 첫 번째 집합 비트(1)의 비트 위치와 함께 로드됩니다. 그 이외의 경우에는 정의되지 않습니다.
마스크
[in] 검색할 32비트 또는 64비트 값입니다.
반환 값
비트가 설정된 Mask
경우 0이 아니고 설정된 비트가 없으면 0입니다.
요구 사항
Intrinsic | 아키텍처 | 헤더 |
---|---|---|
_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 전용 종료