4 references to AndNot
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (3)
390
public static Vector512<T> ConditionalSelect<T>(Vector512<T> condition, Vector512<T> left, Vector512<T> right) => (left & condition) |
AndNot
(right, condition);
2006
return ~IsZero(
AndNot
(Create<uint>(float.PositiveInfinityBits), vector.AsUInt32())).As<uint, T>();
2010
return ~IsZero(
AndNot
(Create<ulong>(double.PositiveInfinityBits), 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);