9 implementations of GetExponentByteCount
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1124int IFloatingPoint<decimal>.GetExponentByteCount() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
697int IFloatingPoint<double>.GetExponentByteCount() => sizeof(short);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1378int IFloatingPoint<Half>.GetExponentByteCount() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
995int IFloatingPoint<BFloat16>.GetExponentByteCount() => sizeof(sbyte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
846int IFloatingPoint<Decimal128>.GetExponentByteCount() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
857int IFloatingPoint<Decimal32>.GetExponentByteCount() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
850int IFloatingPoint<Decimal64>.GetExponentByteCount() => sizeof(int);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1009int IFloatingPoint<NFloat>.GetExponentByteCount() => sizeof(NativeExponentType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
690int 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)
160int length = value!.GetExponentByteCount(); 193int xExponentLength = x.GetExponentByteCount(); 194int 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()" />