4 references to AndNot
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (3)
475
public static Vector512<T> ConditionalSelect<T>(Vector512<T> condition, Vector512<T> left, Vector512<T> right) => (left & condition) |
AndNot
(right, condition);
2091
return ~IsZero(
AndNot
(Vector512<float>.PositiveInfinity.AsUInt32(), vector.AsUInt32())).As<uint, T>();
2095
return ~IsZero(
AndNot
(Vector512<double>.PositiveInfinity.AsUInt64(), vector.AsUInt64())).As<ulong, T>();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
491
static Vector512<T> ISimdVector<Vector512<T>, T>.AndNot(Vector512<T> left, Vector512<T> right) => Vector512.
AndNot
(left, right);