5 implementations of GetSignificandBitLength
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1142int IFloatingPoint<decimal>.GetSignificandBitLength() => 96;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
720int IFloatingPoint<double>.GetSignificandBitLength() => 53;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1363int IFloatingPoint<Half>.GetSignificandBitLength() => 11;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1031int IFloatingPoint<NFloat>.GetSignificandBitLength()
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
715int IFloatingPoint<float>.GetSignificandBitLength() => 24;
7 references to GetSignificandBitLength
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1141/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
719/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1362/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (2)
147int xSignificandBits = x!.GetSignificandBitLength(); 148int ySignificandBits = y!.GetSignificandBitLength();
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1030/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
714/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />