54 references to Create
System.Private.CoreLib (54)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (39)
159return Create( 191return Create( 412return Create( 739return Create( 931return Create(vector, vector); 1285public static Vector128<T> Create<T>(Vector64<T> value) => Create(value, value); 1316public static Vector128<byte> Create(Vector64<byte> lower, Vector64<byte> upper) => Create<byte>(lower, upper); 1322public static Vector128<double> Create(Vector64<double> lower, Vector64<double> upper) => Create<double>(lower, upper); 1328public static Vector128<short> Create(Vector64<short> lower, Vector64<short> upper) => Create<short>(lower, upper); 1335public static Vector128<int> Create(Vector64<int> lower, Vector64<int> upper) => Create<int>(lower, upper); 1341public static Vector128<long> Create(Vector64<long> lower, Vector64<long> upper) => Create<long>(lower, upper); 1347public static Vector128<nint> Create(Vector64<nint> lower, Vector64<nint> upper) => Create<nint>(lower, upper); 1354public static Vector128<nuint> Create(Vector64<nuint> lower, Vector64<nuint> upper) => Create<nuint>(lower, upper); 1361public static Vector128<sbyte> Create(Vector64<sbyte> lower, Vector64<sbyte> upper) => Create<sbyte>(lower, upper); 1367public static Vector128<float> Create(Vector64<float> lower, Vector64<float> upper) => Create<float>(lower, upper); 1374public static Vector128<ushort> Create(Vector64<ushort> lower, Vector64<ushort> upper) => Create<ushort>(lower, upper); 1382public static Vector128<uint> Create(Vector64<uint> lower, Vector64<uint> upper) => Create<uint>(lower, upper); 1389public static Vector128<ulong> Create(Vector64<ulong> lower, Vector64<ulong> upper) => Create<ulong>(lower, upper); 1654return Create( 1761return Create( 1859return Create( 1903return Create( 2283return Create( 2327return Create( 2523return Create( 2541return Create( 2559return Create( 2577return Create( 2595return Create( 2613return Create( 2631return Create( 2649return Create( 2667return Create( 2685return Create( 2723return Create( 3033return Create( 3935return Create( 4055return Create( 4146return Create(
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (13)
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( 376return Vector128.Create(
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
1354public 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)
1386public static Vector512<T> Create<T>(Vector64<T> value) => Create(Vector128.Create(value, value));