Function core::arch::x86::_mm_store_ps
1.27.0 · source · pub unsafe fn _mm_store_ps(p: *mut f32, a: __m128)
Available on (x86 or x86-64) and target feature
sse
and x86 only.Expand description
将四个 32 位浮点数存储到 aligned 存储器中。
如果指针未与 128 位边界 (16 个字节) 对齐,则将触发一般保护错误 (致命程序崩溃)。
_mm_storeu_ps
用于可能未对齐的内存。
这对应于指令 VMOVAPS
/MOVAPS
。