4 references to ConvertToUInt64
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertToInteger.cs (1)
51if (typeof(TTo) == typeof(ulong)) return Vector128.ConvertToUInt64(x.AsDouble()).As<ulong, TTo>();
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertTruncating.cs (1)
131public static Vector128<ulong> Invoke(Vector128<double> x) => Vector128.ConvertToUInt64(x);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
621Vector128.ConvertToUInt64(vector._lower), 622Vector128.ConvertToUInt64(vector._upper)