5 implementations of GetSignificandByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1139int IFloatingPoint<decimal>.GetSignificandByteCount() => sizeof(ulong) + sizeof(uint);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
717int IFloatingPoint<double>.GetSignificandByteCount() => sizeof(ulong);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1360int IFloatingPoint<Half>.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)
712int IFloatingPoint<float>.GetSignificandByteCount() => sizeof(uint);
7 references to GetSignificandByteCount
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1138/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
716/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1359/// <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)
711/// <inheritdoc cref="IFloatingPoint{TSelf}.GetSignificandByteCount()" />