54 references to Create
System.Private.CoreLib (54)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (39)
158return Create( 190return Create( 411return Create( 738return Create( 883return Create(vector, vector); 1237public static Vector128<T> Create<T>(Vector64<T> value) => Create(value, value); 1268public static Vector128<byte> Create(Vector64<byte> lower, Vector64<byte> upper) => Create<byte>(lower, upper); 1274public static Vector128<double> Create(Vector64<double> lower, Vector64<double> upper) => Create<double>(lower, upper); 1280public static Vector128<short> Create(Vector64<short> lower, Vector64<short> upper) => Create<short>(lower, upper); 1287public static Vector128<int> Create(Vector64<int> lower, Vector64<int> upper) => Create<int>(lower, upper); 1293public static Vector128<long> Create(Vector64<long> lower, Vector64<long> upper) => Create<long>(lower, upper); 1299public static Vector128<nint> Create(Vector64<nint> lower, Vector64<nint> upper) => Create<nint>(lower, upper); 1306public static Vector128<nuint> Create(Vector64<nuint> lower, Vector64<nuint> upper) => Create<nuint>(lower, upper); 1313public static Vector128<sbyte> Create(Vector64<sbyte> lower, Vector64<sbyte> upper) => Create<sbyte>(lower, upper); 1319public static Vector128<float> Create(Vector64<float> lower, Vector64<float> upper) => Create<float>(lower, upper); 1326public static Vector128<ushort> Create(Vector64<ushort> lower, Vector64<ushort> upper) => Create<ushort>(lower, upper); 1334public static Vector128<uint> Create(Vector64<uint> lower, Vector64<uint> upper) => Create<uint>(lower, upper); 1341public static Vector128<ulong> Create(Vector64<ulong> lower, Vector64<ulong> upper) => Create<ulong>(lower, upper); 1606return Create( 1713return Create( 1811return Create( 1855return Create( 2235return Create( 2279return Create( 2472return Create( 2490return Create( 2508return Create( 2526return Create( 2544return Create( 2562return Create( 2580return Create( 2598return Create( 2616return Create( 2634return Create( 2672return Create( 2982return Create( 3884return Create( 4001return Create( 4092return 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)
1312public 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)
1351public static Vector512<T> Create<T>(Vector64<T> value) => Create(Vector128.Create(value, value));