_mm_unpacklo_epi32
Microsoft Specific
Interleaves the lower 2 signed or unsigned 32-bit integers in a with the lower 2 signed or unsigned 32-bit integers in b.
__m128i _mm_unpacklo_epi32 (__m128i a, __m128i b);
PUNPCKLDQ
Return Value
r0 := a0 ; r1 := b0
r2 := a1 ; r3 := b1
Requirements
Header: emmintrin.h
END Microsoft Specific