_mm_cvttss_si64
Classification
Header File
Instruction
CVTTSS2SI r64, xmm
Synopsis
_mm_cvttss_si64(__m128 a);
Description
Convert the lower single-precision (32-bit) floating-point element in "a" to a 64-bit integer with truncation, and store the result in "dst".
Operation
dst[63:0] := Convert_FP32_To_Int64_Truncate(a[31:0])