Visible to Intel only — GUID: GUID-AE30B556-F7DD-4FC1-A31A-5D61BE381394
Visible to Intel only — GUID: GUID-AE30B556-F7DD-4FC1-A31A-5D61BE381394
<span class='option'>_tzcnt_u32/64 </span>
Counts the number of trailing least significant zero bits in source operand and returns the result in destination. When source operand is 0, it returns its size in bits. The corresponding Intel® AVX2 instruction is TZCNT.
extern unsigned int _tzcnt_u32(unsigned int source); |
extern unsigned __int64 _tzcnt_u64(unsigned __int64 source); |
source |
the source operand used for the operation |
Searches the source operand for the least significant set bit. If a least significant 1 bit is found, its bit index is returned, otherwise the result is the number of bits in the operand size.
Result of the operation.