_mm_rem_epu16
Classification
SVML, Arithmetic, CPUID Test: SSE
Header File
Synopsis
_mm_rem_epu16(__m128i a, __m128i b);
Description
Divide packed unsigned 16-bit integers in "a" by packed elements in "b", and store the remainders as packed unsigned 32-bit integers in "dst".
Operation
FOR j := 0 to 7
i := 16*j
dst[i+15:i] := REMAINDER(a[i+15:i] / b[i+15:i])
ENDFOR
dst[MAX:128] := 0