10 references to LessThanOrEqual
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
704
static Vector256<T> ISimdVector<Vector256<T>, T>.LessThanOrEqual(Vector256<T> left, Vector256<T> right) => Vector256.
LessThanOrEqual
(left, right);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
2316
Vector256.
LessThanOrEqual
(left._lower, right._lower),
2317
Vector256.
LessThanOrEqual
(left._upper, right._upper)
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\StringSearchValuesHelper.cs (1)
175
Vector256.
LessThanOrEqual
(Value256, Vector256.Create((ushort)'Z'));
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.Packed.cs (2)
1041
Vector256<byte> result = Vector256.
LessThanOrEqual
(packedSource - lowVector, rangeVector);
1066
Vector256<byte> result = Vector256.
LessThanOrEqual
(packedSource - lowVector, rangeVector);
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.T.cs (4)
3554
inRangeVector = TNegator.NegateIfNeeded(Vector256.
LessThanOrEqual
(Vector256.LoadUnsafe(ref current) - lowVector, rangeVector));
3565
inRangeVector = TNegator.NegateIfNeeded(Vector256.
LessThanOrEqual
(Vector256.LoadUnsafe(ref oneVectorAwayFromEnd) - lowVector, rangeVector));
3698
inRangeVector = TNegator.NegateIfNeeded(Vector256.
LessThanOrEqual
(Vector256.LoadUnsafe(ref searchSpace, (nuint)offset) - lowVector, rangeVector));
3708
inRangeVector = TNegator.NegateIfNeeded(Vector256.
LessThanOrEqual
(Vector256.LoadUnsafe(ref searchSpace) - lowVector, rangeVector));