_mm_andnot_si128
Classification
Header File
Instruction
PANDN xmm, xmm
Synopsis
_mm_andnot_si128(__m128i a, __m128i b);
Description
Compute the bitwise NOT of 128 bits (representing integer data) in "a" and then AND with "b", and store the result in "dst".
Operation
dst[127:0] := ((NOT a[127:0]) AND b[127:0])