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