4 references to IsSubnormal
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
908Debug.Assert(double.IsSubnormal(x));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
613public static bool IsSubnormal(NFloat value) => NativeType.IsSubnormal(value._value);
System.Runtime.Numerics (2)
System\Numerics\Complex.cs (2)
655return double.IsSubnormal(value.m_real) || double.IsSubnormal(value.m_imaginary);