Function core::arch::x86_64::_mm_cvtsi32_ss

1.27.0 · source ·
pub unsafe fn _mm_cvtsi32_ss(a: __m128, b: i32) -> __m128
Available on (x86 or x86-64) and target feature sse and x86-64 only.
Expand description

将 32 位整数转换为 32 位浮点型。 结果 vector 是输入 vector a,其最低 32 位浮点数已由转换后的整数替换。

此内部函数对应于 CVTSI2SS 指令 (具有 32 位输入)。

Intel’s documentation