11 references to Shuffle
System.Numerics.Tensors (9)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IBinaryOperator.cs (3)
2750
x = TAggregate.Invoke(x, Vector128.
Shuffle
(x.AsInt16(), Vector128.Create(4, 5, 6, 7, 0, 1, 2, 3)).As<short, T>());
2751
x = TAggregate.Invoke(x, Vector128.
Shuffle
(x.AsInt16(), Vector128.Create(2, 3, 0, 1, 4, 5, 6, 7)).As<short, T>());
2752
x = TAggregate.Invoke(x, Vector128.
Shuffle
(x.AsInt16(), Vector128.Create(1, 0, 2, 3, 4, 5, 6, 7)).As<short, T>());
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IIndexOfOperator.cs (6)
57
tmpResult = Vector128.
Shuffle
(result.AsInt16(), Vector128.Create(4, 5, 6, 7, 0, 1, 2, 3)).As<short, T>();
58
tmpIndex = Vector128.
Shuffle
(resultIndex.AsInt16(), Vector128.Create(4, 5, 6, 7, 0, 1, 2, 3)).As<short, T>();
62
tmpResult = Vector128.
Shuffle
(result.AsInt16(), Vector128.Create(2, 3, 0, 1, 4, 5, 6, 7)).As<short, T>();
63
tmpIndex = Vector128.
Shuffle
(resultIndex.AsInt16(), Vector128.Create(2, 3, 0, 1, 4, 5, 6, 7)).As<short, T>();
67
tmpResult = Vector128.
Shuffle
(result.AsInt16(), Vector128.Create(1, 0, 2, 3, 4, 5, 6, 7)).As<short, T>();
68
tmpIndex = Vector128.
Shuffle
(resultIndex.AsInt16(), Vector128.Create(1, 0, 2, 3, 4, 5, 6, 7)).As<short, T>();
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
1523
hexLow = Vector128.
Shuffle
(hexLow.AsInt16(), Vector128.Create(3, 2, 1, 0, 5, 4, 7, 6)).AsByte();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
3163
return
Shuffle
(vector, indices);