5 implementations of GetSignificandByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1139
int IFloatingPoint<decimal>.
GetSignificandByteCount
() => sizeof(ulong) + sizeof(uint);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
717
int IFloatingPoint<double>.
GetSignificandByteCount
() => sizeof(ulong);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1360
int IFloatingPoint<Half>.
GetSignificandByteCount
() => sizeof(ushort);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1028
int IFloatingPoint<NFloat>.
GetSignificandByteCount
() => sizeof(NativeSignificandType);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
712
int 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)
155
int xSignificandLength = x.
GetSignificandByteCount
();
156
int 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
()" />