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