5 implementations of TryWriteExponentBigEndian
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1145bool IFloatingPoint<decimal>.TryWriteExponentBigEndian(Span<byte> destination, out int bytesWritten)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
723bool IFloatingPoint<double>.TryWriteExponentBigEndian(Span<byte> destination, out int bytesWritten)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1366bool IFloatingPoint<Half>.TryWriteExponentBigEndian(Span<byte> destination, out int bytesWritten)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1041bool IFloatingPoint<NFloat>.TryWriteExponentBigEndian(Span<byte> destination, out int bytesWritten)
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
718bool IFloatingPoint<float>.TryWriteExponentBigEndian(Span<byte> destination, out int bytesWritten)
8 references to TryWriteExponentBigEndian
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1144/// <inheritdoc cref="IFloatingPoint{TSelf}.TryWriteExponentBigEndian(Span{byte}, out int)" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
722/// <inheritdoc cref="IFloatingPoint{TSelf}.TryWriteExponentBigEndian(Span{byte}, out int)" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1365/// <inheritdoc cref="IFloatingPoint{TSelf}.TryWriteExponentBigEndian(Span{byte}, out int)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\IFloatingPoint.cs (3)
118if (!TryWriteExponentBigEndian(destination, out int bytesWritten)) 131if (!TryWriteExponentBigEndian(destination.AsSpan(startIndex), out int bytesWritten)) 143if (!TryWriteExponentBigEndian(destination, out int bytesWritten))
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1040/// <inheritdoc cref="IFloatingPoint{TSelf}.TryWriteExponentBigEndian(Span{byte}, out int)" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
717/// <inheritdoc cref="IFloatingPoint{TSelf}.TryWriteExponentBigEndian(Span{byte}, out int)" />