AdvSimd.Arm64.ConvertToDouble Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConvertToDouble(Vector128<UInt64>) |
float64x2_t vcvtq_f64_u64 (uint64x2_t a) A64: UCVTF Vd.2D, Vn.2D |
ConvertToDouble(Vector128<Int64>) |
float64x2_t vcvtq_f64_s64 (int64x2_t a) A64: SCVTF Vd.2D, Vn.2D |
ConvertToDouble(Vector64<Single>) |
float64x2_t vcvt_f64_f32 (float32x2_t a) A64: FCVTL Vd.2D, Vn.2S |
ConvertToDouble(Vector128<UInt64>)
float64x2_t vcvtq_f64_u64 (uint64x2_t a)
A64: UCVTF Vd.2D, Vn.2D
public:
static System::Runtime::Intrinsics::Vector128<double> ConvertToDouble(System::Runtime::Intrinsics::Vector128<System::UInt64> value);
public static System.Runtime.Intrinsics.Vector128<double> ConvertToDouble (System.Runtime.Intrinsics.Vector128<ulong> value);
static member ConvertToDouble : System.Runtime.Intrinsics.Vector128<uint64> -> System.Runtime.Intrinsics.Vector128<double>
Public Shared Function ConvertToDouble (value As Vector128(Of ULong)) As Vector128(Of Double)
Parameters
Returns
Applies to
ConvertToDouble(Vector128<Int64>)
float64x2_t vcvtq_f64_s64 (int64x2_t a)
A64: SCVTF Vd.2D, Vn.2D
public:
static System::Runtime::Intrinsics::Vector128<double> ConvertToDouble(System::Runtime::Intrinsics::Vector128<long> value);
public static System.Runtime.Intrinsics.Vector128<double> ConvertToDouble (System.Runtime.Intrinsics.Vector128<long> value);
static member ConvertToDouble : System.Runtime.Intrinsics.Vector128<int64> -> System.Runtime.Intrinsics.Vector128<double>
Public Shared Function ConvertToDouble (value As Vector128(Of Long)) As Vector128(Of Double)
Parameters
Returns
Applies to
ConvertToDouble(Vector64<Single>)
float64x2_t vcvt_f64_f32 (float32x2_t a)
A64: FCVTL Vd.2D, Vn.2S
public:
static System::Runtime::Intrinsics::Vector128<double> ConvertToDouble(System::Runtime::Intrinsics::Vector64<float> value);
public static System.Runtime.Intrinsics.Vector128<double> ConvertToDouble (System.Runtime.Intrinsics.Vector64<float> value);
static member ConvertToDouble : System.Runtime.Intrinsics.Vector64<single> -> System.Runtime.Intrinsics.Vector128<double>
Public Shared Function ConvertToDouble (value As Vector64(Of Single)) As Vector128(Of Double)
Parameters
Returns
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.