_mm_unpackhi_epi8
Microsoft Specific
Interleaves the upper 8 signed or unsigned 8-bit integers in a with the upper 8 signed or unsigned 8-bit integers in b.
__m128i _mm_unpackhi_epi8 (__m128i a, __m128i b);
PUNPCKHBW
Return Value
r0 := a8 ; r1 := b8
r2 := a9 ; r3 := b9
...
r14 := a15 ; r15 := b15
Requirements
Header: emmintrin.h
END Microsoft Specific