5 references to UnpackHigh
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.Impl.cs (4)
1686
Vector128<float> upperXZ = Sse.
UnpackHigh
(x, z); // x[2], z[2], x[3], z[3]
1687
Vector128<float> upperYW = Sse.
UnpackHigh
(y, w); // y[2], w[2], y[3], z[3]
1690
result.Y = Sse.
UnpackHigh
(lowerXZ, lowerYW).AsVector4(); // x[1], y[1], z[1], w[1]
1692
result.W = Sse.
UnpackHigh
(upperXZ, upperYW).AsVector4(); // x[3], y[3], z[3], w[3]
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Sse.cs (1)
631
public static Vector128<float> UnpackHigh(Vector128<float> left, Vector128<float> right) =>
UnpackHigh
(left, right);