4 references to ConvertToDouble
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
192public static Vector128<double> Invoke(Vector128<ulong> x) => Vector128.ConvertToDouble(x);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
416return Vector128.ConvertToDouble(value.AsVector128()).AsVector();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
466Vector128.ConvertToDouble(vector._lower), 467Vector128.ConvertToDouble(vector._upper)