Function core::arch::x86_64::_mm_cvtss_si64 1.27.0[−][src]
pub unsafe fn _mm_cvtss_si64(a: __m128) -> i64
This is supported on x86-64 and target feature
sse
only.Expand description
将输入 vector 中的最低 32 位浮点型转换为 64 位整数。
根据当前舍入模式对结果进行舍入。
如果结果不能表示为 64 位整数,则结果将为 0x8000_0000_0000_0000
(i64::MIN
) 或在未屏蔽的情况下触发无效的操作浮点异常 (请参见 _mm_setcsr
)。)
这对应于 CVTSS2SI
指令 (具有 64 位输出)。