5 references to Indices
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (4)
344
sizeof(T) == sizeof(long) ? Vector128<long>.
Indices
.As<long, T>() :
345
sizeof(T) == sizeof(int) ? Vector128<int>.
Indices
.As<int, T>() :
346
sizeof(T) == sizeof(short) ? Vector128<short>.
Indices
.As<short, T>() :
347
Vector128<byte>.
Indices
.As<byte, T>();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
1531
public static Vector128<T> CreateSequence<T>(T start, T step) => (Vector128<T>.
Indices
* step) + Create(start);