3 references to AndNot
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (3)
355
public static Vector<T> ConditionalSelect<T>(Vector<T> condition, Vector<T> left, Vector<T> right) => (left & condition) |
AndNot
(right, condition);
1394
return ~IsZero(
AndNot
(Create<uint>(float.PositiveInfinityBits), vector.As<T, uint>())).As<uint, T>();
1398
return ~IsZero(
AndNot
(Create<ulong>(double.PositiveInfinityBits), vector.As<T, ulong>())).As<ulong, T>();