_mm_div_epi64
Classification
SVML, Arithmetic, CPUID Test: SSE
Header File
Synopsis
_mm_div_epi64(__m128i a, __m128i b);
Description
Divide packed signed 64-bit integers in "a" by packed elements in "b", and store the truncated results in "dst".
Operation
FOR j := 0 to 1
i := 64*j
IF b[i+63:i] == 0
#DE
FI
dst[i+63:i] := Truncate64(a[i+63:i] / b[i+63:i])
ENDFOR
dst[MAX:128] := 0