5 implementations of GetSignificandBitLength
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1142
int IFloatingPoint<decimal>.
GetSignificandBitLength
() => 96;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
720
int IFloatingPoint<double>.
GetSignificandBitLength
() => 53;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1363
int IFloatingPoint<Half>.
GetSignificandBitLength
() => 11;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1031
int IFloatingPoint<NFloat>.
GetSignificandBitLength
()
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
715
int 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)
147
int xSignificandBits = x!.
GetSignificandBitLength
();
148
int 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
()" />