9 implementations of GetSignificandBitLength
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1137
int IFloatingPoint<decimal>.
GetSignificandBitLength
() => 96;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
718
int IFloatingPoint<double>.
GetSignificandBitLength
() => 53;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1399
int IFloatingPoint<Half>.
GetSignificandBitLength
() => SignificandLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1016
int IFloatingPoint<BFloat16>.
GetSignificandBitLength
() => SignificandLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
864
int IFloatingPoint<Decimal128>.
GetSignificandBitLength
() => 113;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
875
int IFloatingPoint<Decimal32>.
GetSignificandBitLength
() => 24;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
868
int IFloatingPoint<Decimal64>.
GetSignificandBitLength
() => 54;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1030
int IFloatingPoint<NFloat>.
GetSignificandBitLength
()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
711
int 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)
262
int xSignificandBits = x!.
GetSignificandBitLength
();
263
int ySignificandBits = y!.
GetSignificandBitLength
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Random.cs (1)
441
int 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
()" />