5 implementations of GetExponentByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1129int IFloatingPoint<decimal>.GetExponentByteCount() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
699int IFloatingPoint<double>.GetExponentByteCount() => sizeof(short);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1342int IFloatingPoint<Half>.GetExponentByteCount() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1010int IFloatingPoint<NFloat>.GetExponentByteCount() => sizeof(NativeExponentType);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
694int IFloatingPoint<float>.GetExponentByteCount() => sizeof(sbyte);
5 references to GetExponentByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1128/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
698/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1341/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1009/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
693/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />