11 references to LessThan
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (10)
1476return LessThan(vector, Vector<T>.Zero); 1503return LessThan(Abs(vector).As<T, uint>() - Create<uint>(float.SmallestNormalBits), Create<uint>(float.PositiveInfinityBits - float.SmallestNormalBits)).As<uint, T>(); 1507return LessThan(Abs(vector).As<T, ulong>() - Create<ulong>(double.SmallestNormalBits), Create<ulong>(double.PositiveInfinityBits - double.SmallestNormalBits)).As<ulong, T>(); 1578return LessThan(Abs(vector).As<T, uint>() - Vector<uint>.One, Create<uint>(float.MaxTrailingSignificand)).As<uint, T>(); 1582return LessThan(Abs(vector).As<T, ulong>() - Vector<ulong>.One, Create<ulong>(double.MaxTrailingSignificand)).As<ulong, T>(); 1708public static Vector<long> LessThan(Vector<double> left, Vector<double> right) => LessThan<double>(left, right).As<double, long>(); 1715public static Vector<int> LessThan(Vector<int> left, Vector<int> right) => LessThan<int>(left, right); 1722public static Vector<long> LessThan(Vector<long> left, Vector<long> right) => LessThan<long>(left, right); 1729public static Vector<int> LessThan(Vector<float> left, Vector<float> right) => LessThan<float>(left, right).As<float, int>(); 2203return ConditionalSelect(LessThan(left, right), left, right);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1052static Vector<T> ISimdVector<Vector<T>, T>.LessThan(Vector<T> left, Vector<T> right) => Vector.LessThan(left, right);