8 references to ZipLower
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.cs (4)
2360Vector128<float> lowerXZ = Vector128.ZipLower(x, z); // x[0], z[0], x[1], z[1] 2361Vector128<float> lowerYW = Vector128.ZipLower(y, w); // y[0], w[0], y[1], w[1] 2365result.X = Vector128.ZipLower(lowerXZ, lowerYW); // x[0], y[0], z[0], w[0] 2367result.Z = Vector128.ZipLower(upperXZ, upperYW); // x[2], y[2], z[2], w[2]
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1045return Vector128.ZipLower(left.AsVector128(), right.AsVector128()).AsVector();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
1693public static (Vector128<T> Lower, Vector128<T> Upper) Zip<T>(Vector128<T> left, Vector128<T> right) => (ZipLower(left, right), ZipUpper(left, right));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
1749Vector128.ZipLower(left.GetLower(), right.GetLower()), 1757Vector128.ZipLower(left.GetUpper(), right.GetUpper()),