_mm_unpacklo_epi8
Microsoft Specific
Interleaves the lower 8 signed or unsigned 8-bit integers in a with the lower 8 signed or unsigned 8-bit integers in b.
__m128i _mm_unpacklo_epi8 (__m128i a, __m128i b);
PUNPCKLBW
Return Value
r0 := a0 ; r1 := b0
r2 := a1 ; r3 := b1
...
r14 := a7 ; r15 := b7
Requirements
Header: emmintrin.h
END Microsoft Specific