4 implementations of BitsToFloat
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2589static double IBinaryFloatParseAndFormatInfo<double>.BitsToFloat(ulong bits) => BitConverter.UInt64BitsToDouble(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2432static Half IBinaryFloatParseAndFormatInfo<Half>.BitsToFloat(ulong bits) => BitConverter.UInt16BitsToHalf((ushort)(bits));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2157static BFloat16 IBinaryFloatParseAndFormatInfo<BFloat16>.BitsToFloat(ulong bits) => new BFloat16((ushort)(bits));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2277static 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)
1760return TFloat.BitsToFloat(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
3759result = TFloat.BitsToFloat(bits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
1568result = TFloat.BitsToFloat(bits); 1763result = TFloat.BitsToFloat(bits);