_bittestandcomplement, _bittestandcomplement64
Microsoft 전용
주소 a의 비트 b를 검사하고 현재 값을 반환한 다음 비트를 보수로 설정하는 명령을 생성합니다.
unsigned char _bittestandcomplement( long *a, long b ); unsigned char _bittestandcomplement64( __int64 *a, __int64 b );
매개 변수
[in, out] a
검사할 메모리에 대한 포인터입니다.[in] b
테스트할 비트 위치입니다.
반환 값
지정한 위치에 있는 비트입니다.
요구 사항
내장 함수 |
아키텍처 |
---|---|
_bittestandcomplement |
x86, ARM, x64 |
_bittestandcomplement64 |
x64 |
헤더 파일 <intrin.h>
설명
이 루틴은 내장 루틴으로만 사용할 수 있습니다.
예제
// bittestandcomplement.cpp
// processor: x86, IPF, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(_bittestandcomplement)
#ifdef _M_AMD64
#pragma intrinsic(_bittestandcomplement64)
#endif
int main()
{
long i = 1;
__int64 i64 = 0x1I64;
unsigned char result;
printf("Initial value: %d\n", i);
printf("Testing bit 1\n");
result = _bittestandcomplement(&i, 1);
printf("Value changed to %d, Result: %d\n", i, result);
#ifdef _M_AMD64
printf("Testing bit 0\n");
result = _bittestandcomplement64(&i64, 0);
printf("Value changed to %I64d, Result: %d\n", i64, result);
#endif
}
샘플 출력
Initial value: 1
Testing bit 1
Value changed to 3, Result: 0
Testing bit 0
Value changed to 0, Result: 1