_mm_min_pi16
Classification
SSE_ALL, Special Math Functions, CPUID Test: SSE
Header File
Instruction
PMINSW mm, mm
Synopsis
_mm_min_pi16(__m64 a, __m64 b);
Description
Compare packed signed 16-bit integers in "a" and "b", and store packed minimum values in "dst".
Operation
FOR j := 0 to 3
i := j*16
dst[i+15:i] := MIN(a[i+15:i], b[i+15:i])
ENDFOR