5 references to UnpackLow
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.Impl.cs (4)
1684
Vector128<float> lowerXZ = Sse.
UnpackLow
(x, z); // x[0], z[0], x[1], z[1]
1685
Vector128<float> lowerYW = Sse.
UnpackLow
(y, w); // y[0], w[0], y[1], w[1]
1689
result.X = Sse.
UnpackLow
(lowerXZ, lowerYW).AsVector4(); // x[0], y[0], z[0], w[0]
1691
result.Z = Sse.
UnpackLow
(upperXZ, upperYW).AsVector4(); // x[2], y[2], z[2], w[2]
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Sse.cs (1)
639
public static Vector128<float> UnpackLow(Vector128<float> left, Vector128<float> right) =>
UnpackLow
(left, right);