6 references to Shuffle
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IBinaryOperator.cs (1)
2762x = TAggregate.Invoke(x, Vector128.Shuffle(x.AsInt64(), Vector128.Create(1, 0)).As<long, T>());
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IIndexOfOperator.cs (2)
30tmpResult = Vector128.Shuffle(result.AsInt64(), Vector128.Create(1, 0)).As<long, T>(); 31tmpIndex = Vector128.Shuffle(resultIndex.AsInt64(), Vector128.Create(1, 0)).As<long, T>();
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
3193return Shuffle(vector, indices);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.cs (2)
277tempFirst = Vector128.Shuffle(tempFirst, Vector128.Create(1, 0)); 278tempLast = Vector128.Shuffle(tempLast, Vector128.Create(1, 0));