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