9 implementations of GetExponentShortestBitLength
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1127int IFloatingPoint<decimal>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
700int IFloatingPoint<double>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1381int IFloatingPoint<Half>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
998int IFloatingPoint<BFloat16>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
849int IFloatingPoint<Decimal128>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
860int IFloatingPoint<Decimal32>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
853int IFloatingPoint<Decimal64>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1012int IFloatingPoint<NFloat>.GetExponentShortestBitLength()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
693int IFloatingPoint<float>.GetExponentShortestBitLength()
11 references to GetExponentShortestBitLength
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1126/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
699/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1380/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
997/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
848/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
859/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
852/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (2)
178int xExponentBits = x!.GetExponentShortestBitLength(); 179int yExponentBits = y!.GetExponentShortestBitLength();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1011/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
692/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentShortestBitLength()" />