9 implementations of GetSignificandBitLength
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1137int IFloatingPoint<decimal>.GetSignificandBitLength() => 96;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
718int IFloatingPoint<double>.GetSignificandBitLength() => 53;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1399int IFloatingPoint<Half>.GetSignificandBitLength() => SignificandLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1016int IFloatingPoint<BFloat16>.GetSignificandBitLength() => SignificandLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
864int IFloatingPoint<Decimal128>.GetSignificandBitLength() => 113;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
875int IFloatingPoint<Decimal32>.GetSignificandBitLength() => 24;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
868int IFloatingPoint<Decimal64>.GetSignificandBitLength() => 54;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1030int IFloatingPoint<NFloat>.GetSignificandBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
711int IFloatingPoint<float>.GetSignificandBitLength() => 24;
12 references to GetSignificandBitLength
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1136/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
717/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1398/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1015/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
863/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
874/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
867/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (2)
262int xSignificandBits = x!.GetSignificandBitLength(); 263int ySignificandBits = y!.GetSignificandBitLength();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Random.cs (1)
441int significandBitLength = T.Zero.GetSignificandBitLength();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1029/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
710/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandBitLength()" />