_mm256_and_si256
Classification
Header File
Instruction
VPAND ymm, ymm, ymm
Synopsis
_mm256_and_si256(__m256i a, __m256i b);
Description
Compute the bitwise AND of 256 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[255:0] := (a[255:0] AND b[255:0])
dst[MAX:256] := 0