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