29 references to GetLower
System.IO.Hashing (1)
System\IO\Hashing\Adler32.cs (1)
459
Vector256<uint> sumLo = Avx2.SumAbsoluteDifferences(data.
GetLower
(), Vector256<byte>.Zero).AsUInt32();
System.Numerics.Tensors (6)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IBinaryOperator.cs (1)
2731
HorizontalAggregate<T, TAggregate>(TAggregate.Invoke(x.
GetLower
(), x.GetUpper()));
System\Numerics\Tensors\netcore\TensorPrimitives.FloatHelpers.cs (4)
17
Vector512.Create(ApplyScalar<TOperator>(floats.
GetLower
()), ApplyScalar<TOperator>(floats.GetUpper()));
26
Vector512.Create(ApplyScalar<TOperator>(doubles.
GetLower
()), ApplyScalar<TOperator>(doubles.GetUpper()));
57
(Vector256<float> firstLower, Vector256<float> secondLower) = Apply2xScalar<TOperator>(floats.
GetLower
());
93
(Vector256<double> firstLower, Vector256<double> secondLower) = Apply2xScalar<TOperator>(doubles.
GetLower
());
System\Numerics\Tensors\netcore\TensorPrimitives.LeadingZeroCount.cs (1)
208
return Vector512.Create(Invoke(x.
GetLower
()), Invoke(x.GetUpper()));
System.Private.CoreLib (22)
src\runtime\src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.MinMax.cs (1)
300
Vector256<T> best256 = TMinMax.Compare(best.
GetLower
(), best.GetUpper());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (17)
1761
public static Vector512<T> ConcatLowerLower<T>(Vector512<T> left, Vector512<T> right) => Create(left.
GetLower
(), right.
GetLower
());
1766
public static Vector512<T> ConcatUpperLower<T>(Vector512<T> left, Vector512<T> right) => Create(left.GetUpper(), right.
GetLower
());
1776
public static Vector512<T> ConcatLowerUpper<T>(Vector512<T> left, Vector512<T> right) => Create(left.
GetLower
(), right.GetUpper());
1782
Vector256.ZipLower(left.
GetLower
(), right.
GetLower
()),
1783
Vector256.ZipUpper(left.
GetLower
(), right.
GetLower
())
1818
(Vector256<T> lower0, Vector256<T> upper0) = Vector256.Zip(left.
GetLower
(), right.
GetLower
());
1828
Vector256.UnzipEven(left.
GetLower
(), left.GetUpper()),
1829
Vector256.UnzipEven(right.
GetLower
(), right.GetUpper())
1836
Vector256.UnzipOdd(left.
GetLower
(), left.GetUpper()),
1837
Vector256.UnzipOdd(right.
GetLower
(), right.GetUpper())
1867
(Vector256<T> even0, Vector256<T> odd0) = Vector256.Unzip(left.
GetLower
(), left.GetUpper());
1868
(Vector256<T> even1, Vector256<T> odd1) = Vector256.Unzip(right.
GetLower
(), right.GetUpper());
1878
Vector256.Reverse(vector.
GetLower
())
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (1)
2829
result = (TVectorSingle)(object)Vector256.Narrow(value.
GetLower
(), value.GetUpper());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (3)
1979
asciiVector.
GetLower
().StoreUnsafe(ref asciiBuffer, 0); // how to store the lower part of a avx512
2006
asciiVector.
GetLower
().StoreUnsafe(ref asciiBuffer, currentOffsetInElements);
2059
asciiVector.
GetLower
().StoreUnsafe(ref asciiBuffer, currentOffsetInElements);