_mm_andnot_si64
Classification
MMX, Logical, CPUID Test: MMX
Header File
mmintrin.h
Instruction
PANDN mm, mm
Synopsis
 _mm_andnot_si64(__m64 a, __m64 b);
Description
Compute the bitwise NOT of 64 bits (representing integer data) in "a" and then AND with "b", and store the result in "dst".
Operation
dst[63:0] := ((NOT a[63:0]) AND b[63:0])