_andn_u32
Classification
Other, Bit Manipulation, CPUID Test: BMI1
Header File
Instruction
ANDN r32, r32, r32
Synopsis
_andn_u32(unsigned int a, unsigned int b);
Description
Compute the bitwise NOT of 32-bit integer "a" and then AND with b, and store the results in dst.
Operation
dst[31:0] := ((NOT a[31:0]) AND b[31:0])