Function core::arch::x86_64::_mm_insert_si64 1.27.0[−][src]
pub unsafe fn _mm_insert_si64(x: __m128i, y: __m128i) -> __m128i
This is supported on x86-64 and target feature
sse4a
only.Expand description
将 y
的 [length:0]
位插入 index
处的 x
。
y
的位:
[69:64]
指定length
,[77:72]
指定索引。
如果 length
为零,则将其解释为 64
。
如果是 index + length > 64
或 index > 0 && length == 0
,则结果不确定。