13 references to CreateScalar
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (12)
1249
public static unsafe Vector128<byte> CreateScalar(byte value) =>
CreateScalar
<byte>(value);
1255
public static unsafe Vector128<double> CreateScalar(double value) =>
CreateScalar
<double>(value);
1261
public static unsafe Vector128<short> CreateScalar(short value) =>
CreateScalar
<short>(value);
1267
public static unsafe Vector128<int> CreateScalar(int value) =>
CreateScalar
<int>(value);
1273
public static unsafe Vector128<long> CreateScalar(long value) =>
CreateScalar
<long>(value);
1279
public static unsafe Vector128<nint> CreateScalar(nint value) =>
CreateScalar
<nint>(value);
1286
public static unsafe Vector128<nuint> CreateScalar(nuint value) =>
CreateScalar
<nuint>(value);
1293
public static unsafe Vector128<sbyte> CreateScalar(sbyte value) =>
CreateScalar
<sbyte>(value);
1299
public static unsafe Vector128<float> CreateScalar(float value) =>
CreateScalar
<float>(value);
1306
public static unsafe Vector128<ushort> CreateScalar(ushort value) =>
CreateScalar
<ushort>(value);
1313
public static unsafe Vector128<uint> CreateScalar(uint value) =>
CreateScalar
<uint>(value);
1320
public static unsafe Vector128<ulong> CreateScalar(ulong value) =>
CreateScalar
<ulong>(value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
1349
public static Vector256<T> CreateScalar<T>(T value) => Vector128.
CreateScalar
(value).ToVector256();