6 references to IsZero
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1029static Vector<T> ISimdVector<Vector<T>, T>.IsZero(Vector<T> vector) => Vector.IsZero(vector);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (5)
1748return IsZero(vector & Vector<T>.One); 1758return ~IsZero(AndNot(Vector<float>.PositiveInfinity.As<float, uint>(), vector.As<T, uint>())).As<uint, T>(); 1762return ~IsZero(AndNot(Vector<double>.PositiveInfinity.As<double, ulong>(), vector.As<T, ulong>())).As<ulong, T>(); 1855return ~IsZero(vector); 1871return ~IsZero(vector & Vector<T>.One);