_bittest、_bittest64
Microsoft 固有の仕様
bt
命令を生成します。この命令は、アドレス b
の位置 a
にあるビットを検査し、そのビットの値を返します。
構文
unsigned char _bittest(
long const *a,
long b
);
unsigned char _bittest64(
__int64 const *a,
__int64 b
);
パラメーター
a
[in] 検査するメモリを指すポインター。
b
[in] テストするビット位置。
戻り値
指定した位置にあるビット。
要件
Intrinsic | Architecture | ヘッダー |
---|---|---|
_bittest |
x86、ARM、x64、ARM64 | <intrin.h> |
_bittest64 |
ARM64、x64 | <intrin.h> |
解説
このルーチンは、組み込みとしてのみ使用できます。
例
// bittest.cpp
// processor: x86, ARM, x64
#include <stdio.h>
#include <intrin.h>
long num = 78002;
int main()
{
unsigned char bits[32];
long nBit;
printf_s("Number: %d\n", num);
for (nBit = 0; nBit < 31; nBit++)
{
bits[nBit] = _bittest(&num, nBit);
}
printf_s("Binary representation:\n");
while (nBit--)
{
if (bits[nBit])
printf_s("1");
else
printf_s("0");
}
}
Number: 78002
Binary representation:
0000000000000010011000010110010
Microsoft 固有の仕様はここまで