9 implementations of GetExponentByteCount
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1124
int IFloatingPoint<decimal>.
GetExponentByteCount
() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
697
int IFloatingPoint<double>.
GetExponentByteCount
() => sizeof(short);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1378
int IFloatingPoint<Half>.
GetExponentByteCount
() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
995
int IFloatingPoint<BFloat16>.
GetExponentByteCount
() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
846
int IFloatingPoint<Decimal128>.
GetExponentByteCount
() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
857
int IFloatingPoint<Decimal32>.
GetExponentByteCount
() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
850
int IFloatingPoint<Decimal64>.
GetExponentByteCount
() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1009
int IFloatingPoint<NFloat>.
GetExponentByteCount
() => sizeof(NativeExponentType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
690
int IFloatingPoint<float>.
GetExponentByteCount
() => sizeof(sbyte);
12 references to GetExponentByteCount
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1123
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
696
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1377
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
994
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
845
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
856
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
849
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (3)
160
int length = value!.
GetExponentByteCount
();
193
int xExponentLength = x.
GetExponentByteCount
();
194
int yExponentLength = y.
GetExponentByteCount
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1008
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
689
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />