6 implementations of GetSignificandByteCount
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1140int IFloatingPoint<decimal>.GetSignificandByteCount() => sizeof(ulong) + sizeof(uint);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
719int IFloatingPoint<double>.GetSignificandByteCount() => sizeof(ulong);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1356int IFloatingPoint<Half>.GetSignificandByteCount() => sizeof(ushort);
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1015int IFloatingPoint<BFloat16>.GetSignificandByteCount() => sizeof(ushort);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1028int IFloatingPoint<NFloat>.GetSignificandByteCount() => sizeof(NativeSignificandType);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
714int IFloatingPoint<float>.GetSignificandByteCount() => sizeof(uint);
8 references to GetSignificandByteCount
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1139/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
718/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1355/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1014/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (2)
155int xSignificandLength = x.GetSignificandByteCount(); 156int ySignificandLength = y.GetSignificandByteCount();
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1027/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
713/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />