4 implementations of BitsToFloat
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2589
static double IBinaryFloatParseAndFormatInfo<double>.
BitsToFloat
(ulong bits) => BitConverter.UInt64BitsToDouble(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2432
static Half IBinaryFloatParseAndFormatInfo<Half>.
BitsToFloat
(ulong bits) => BitConverter.UInt16BitsToHalf((ushort)(bits));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2157
static BFloat16 IBinaryFloatParseAndFormatInfo<BFloat16>.
BitsToFloat
(ulong bits) => new BFloat16((ushort)(bits));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2277
static float IBinaryFloatParseAndFormatInfo<float>.
BitsToFloat
(ulong bits) => BitConverter.UInt32BitsToSingle((uint)(bits));
4 references to BitsToFloat
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (1)
1760
return TFloat.
BitsToFloat
(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
3759
result = TFloat.
BitsToFloat
(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
1568
result = TFloat.
BitsToFloat
(bits);
1763
result = TFloat.
BitsToFloat
(bits);