_bittestandreset, _bittestandreset64
Section spécifique à Microsoft
Générer l'instruction qui examine le bit b de l'adresse a, retourne sa valeur actuelle et réinitialise le bit à la valeur 0.
unsigned char _bittestandreset( long *a, long b ); unsigned char _bittestandreset64( __int64 *a, __int64 b );
Paramètres
[in, out] a
Pointeur vers la mémoire à examiner.[in] b
Position du bit à tester.
Valeur de retour
Bit à la position spécifiée.
Configuration requise
Intrinsèque |
Architecture |
---|---|
_bittestandreset |
x86, ARM, x64 |
_bittestandreset64 |
x64 |
Fichier d'en-tête <intrin.h>
Notes
Cette routine est disponible uniquement en tant qu'intrinsèque.
Exemple
// bittestandreset.cpp
// processor: x86, IPF, x64
#include <stdio.h>
#include <limits.h>
#include <intrin.h>
#pragma intrinsic(_bittestandreset)
// Check the sign bit and reset to 0 (taking the absolute value)
// Returns 0 if the number is positive or zero
// Returns 1 if the number is negative
unsigned char absolute_value(long* p)
{
const int SIGN_BIT = 31;
return _bittestandreset(p, SIGN_BIT);
}
int main()
{
long i = -112;
unsigned char result;
// Check the sign bit and reset to 0 (taking the absolute value)
result = absolute_value(&i);
if (result == 1)
printf_s("The number was negative.\n");
}