4 references to AndNot
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (3)
373public static Vector<T> ConditionalSelect<T>(Vector<T> condition, Vector<T> left, Vector<T> right) => (left & condition) | AndNot(right, condition); 1412return ~IsZero(AndNot(Create<uint>(float.PositiveInfinityBits), vector.As<T, uint>())).As<uint, T>(); 1416return ~IsZero(AndNot(Create<ulong>(double.PositiveInfinityBits), vector.As<T, ulong>())).As<ulong, T>();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
851static Vector<T> ISimdVector<Vector<T>, T>.AndNot(Vector<T> left, Vector<T> right) => Vector.AndNot(left, right);