_mm_andnot_si128
Classification
SSE_ALL, Logical, CPUID Test: SSE2
Header File
emmintrin.h
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])