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