5 references to ConvertToDouble
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
201
public static Vector128<double> Invoke(Vector128<long> x) => Vector128.
ConvertToDouble
(x);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
481
return Vector128.
ConvertToDouble
(value.AsVector128()).AsVector();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
516
Vector128.
ConvertToDouble
(vector._lower),
517
Vector128.
ConvertToDouble
(vector._upper)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (1)
2534
result = (TVectorDouble)(object)Vector128.
ConvertToDouble
((Vector128<long>)(object)vector);