9 implementations of GetSignificandByteCount
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1134int IFloatingPoint<decimal>.GetSignificandByteCount() => sizeof(ulong) + sizeof(uint);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
715int IFloatingPoint<double>.GetSignificandByteCount() => sizeof(ulong);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1396int IFloatingPoint<Half>.GetSignificandByteCount() => sizeof(ushort);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1013int IFloatingPoint<BFloat16>.GetSignificandByteCount() => sizeof(byte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
867int IFloatingPoint<Decimal128>.GetSignificandByteCount() => Unsafe.SizeOf<UInt128>();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
878int IFloatingPoint<Decimal32>.GetSignificandByteCount() => sizeof(uint);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
871int IFloatingPoint<Decimal64>.GetSignificandByteCount() => sizeof(ulong);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1027int IFloatingPoint<NFloat>.GetSignificandByteCount() => sizeof(NativeSignificandType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
708int IFloatingPoint<float>.GetSignificandByteCount() => sizeof(uint);
11 references to GetSignificandByteCount
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1133/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
714/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1395/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1012/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
866/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
877/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
870/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (2)
270int xSignificandLength = x.GetSignificandByteCount(); 271int ySignificandLength = y.GetSignificandByteCount();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1026/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
707/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />