9 implementations of GetSignificandByteCount
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1134
int IFloatingPoint<decimal>.
GetSignificandByteCount
() => sizeof(ulong) + sizeof(uint);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
715
int IFloatingPoint<double>.
GetSignificandByteCount
() => sizeof(ulong);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1396
int IFloatingPoint<Half>.
GetSignificandByteCount
() => sizeof(ushort);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1013
int IFloatingPoint<BFloat16>.
GetSignificandByteCount
() => sizeof(byte);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
867
int IFloatingPoint<Decimal128>.
GetSignificandByteCount
() => Unsafe.SizeOf<UInt128>();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
878
int IFloatingPoint<Decimal32>.
GetSignificandByteCount
() => sizeof(uint);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
871
int IFloatingPoint<Decimal64>.
GetSignificandByteCount
() => sizeof(ulong);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1027
int IFloatingPoint<NFloat>.
GetSignificandByteCount
() => sizeof(NativeSignificandType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
708
int 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)
270
int xSignificandLength = x.
GetSignificandByteCount
();
271
int 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
()" />