6 implementations of GetExponentByteCount
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1130int IFloatingPoint<decimal>.GetExponentByteCount() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
701int IFloatingPoint<double>.GetExponentByteCount() => sizeof(short);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1338int IFloatingPoint<Half>.GetExponentByteCount() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
995int IFloatingPoint<BFloat16>.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)
696int IFloatingPoint<float>.GetExponentByteCount() => sizeof(sbyte);
6 references to GetExponentByteCount
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1129/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
700/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1337/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
994/// <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)
695/// <inheritdoc cref="IFloatingPoint{TSelf}.GetExponentByteCount()" />