_BitScanReverse, _BitScanReverse64
Specyficzne dla firmy Microsoft
Wyszukiwanie danych maska z najważniejsze bit (NZB), na co najmniej znaczących bitów (Znaczącym) w celu zestaw bit (1).
unsigned char _BitScanReverse( unsigned long * Index, unsigned long Mask ); unsigned char _BitScanReverse64( unsigned long * Index, unsigned __int64 Mask );
Parametry
[limit]Index
Załadowana pozycji bitu pierwszego ustawiony bit (1) znaleźć.[w]Mask
32-bitowy lub 64-bitowej wartości do wyszukania.
Wartość zwracana
Jeśli niezerową Index została zestawu lub 0, jeśli nie znaleziono żadnych bitów zestawu.
Wymagania
Wewnętrzne |
Architektura |
nagłówek |
---|---|---|
_BitScanReverse |
x 86, ARM,x64 |
< intrin.h > |
_BitScanReverse64 |
ARM,x64 |
Przykład
// 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;
}
}
Dane wejściowe
12
Przykładowe dane wyjściowe
Enter a positive integer as the mask:
Mask: 12 Index: 3