_BitScanReverse, _BitScanReverse64
Section spécifique à Microsoft
Rechercher les données de masque du bit le plus significatif (MSB) au bit le moins significatif (LSB) pour un bit défini (1).
unsigned char _BitScanReverse( unsigned long * Index, unsigned long Mask ); unsigned char _BitScanReverse64( unsigned long * Index, unsigned __int64 Mask );
Paramètres
[out] Index
Chargé avec la position de bit du premier bit défini (1) détecté.[in] Mask
Valeur 32 bits ou 64 bits à rechercher.
Valeur de retour
Différent de zéro si Index a été défini ou 0 si aucun bit défini n'a été détecté.
Configuration requise
Intrinsèque |
Architecture |
Header |
---|---|---|
_BitScanReverse |
x86, ARM, x64 |
<intrin.h> |
_BitScanReverse64 |
ARM, x64 |
Exemple
// 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;
}
}
Entrée
12
Résultat de l'exemple
Enter a positive integer as the mask:
Mask: 12 Index: 3