37 references to Create
System.Private.CoreLib (37)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (23)
71return Create( 305return Create( 632return Create( 777return Create(vector, vector); 1131public static Vector128<T> Create<T>(Vector64<T> value) => Create(value, value); 1162public static unsafe Vector128<byte> Create(Vector64<byte> lower, Vector64<byte> upper) => Create<byte>(lower, upper); 1168public static unsafe Vector128<double> Create(Vector64<double> lower, Vector64<double> upper) => Create<double>(lower, upper); 1174public static unsafe Vector128<short> Create(Vector64<short> lower, Vector64<short> upper) => Create<short>(lower, upper); 1181public static unsafe Vector128<int> Create(Vector64<int> lower, Vector64<int> upper) => Create<int>(lower, upper); 1187public static unsafe Vector128<long> Create(Vector64<long> lower, Vector64<long> upper) => Create<long>(lower, upper); 1193public static unsafe Vector128<nint> Create(Vector64<nint> lower, Vector64<nint> upper) => Create<nint>(lower, upper); 1200public static unsafe Vector128<nuint> Create(Vector64<nuint> lower, Vector64<nuint> upper) => Create<nuint>(lower, upper); 1207public static unsafe Vector128<sbyte> Create(Vector64<sbyte> lower, Vector64<sbyte> upper) => Create<sbyte>(lower, upper); 1213public static unsafe Vector128<float> Create(Vector64<float> lower, Vector64<float> upper) => Create<float>(lower, upper); 1220public static unsafe Vector128<ushort> Create(Vector64<ushort> lower, Vector64<ushort> upper) => Create<ushort>(lower, upper); 1228public static unsafe Vector128<uint> Create(Vector64<uint> lower, Vector64<uint> upper) => Create<uint>(lower, upper); 1235public static unsafe Vector128<ulong> Create(Vector64<ulong> lower, Vector64<ulong> upper) => Create<ulong>(lower, upper); 1500return Create( 1607return Create( 1705return Create( 1749return Create( 2129return Create( 2173return Create(
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (12)
138return Vector128.Create( 153return Vector128.Create( 168return Vector128.Create( 183return Vector128.Create( 197return Vector128.Create( 225return Vector128.Create( 247return Vector128.Create( 262return Vector128.Create( 277return Vector128.Create( 300return Vector128.Create( 314return Vector128.Create( 329return Vector128.Create(
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
1226public static Vector256<T> Create<T>(Vector64<T> value) => Create(Vector128.Create(value, value));
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
1266public static Vector512<T> Create<T>(Vector64<T> value) => Create(Vector128.Create(value, value));