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