6 implementations of GetSignificandByteCount
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1140
int IFloatingPoint<decimal>.
GetSignificandByteCount
() => sizeof(ulong) + sizeof(uint);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
719
int IFloatingPoint<double>.
GetSignificandByteCount
() => sizeof(ulong);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1356
int IFloatingPoint<Half>.
GetSignificandByteCount
() => sizeof(ushort);
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1015
int IFloatingPoint<BFloat16>.
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)
714
int 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)
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)
713
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetSignificandByteCount
()" />