3 implementations of BitsToFloat
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2323static double IBinaryFloatParseAndFormatInfo<double>.BitsToFloat(ulong bits) => BitConverter.UInt64BitsToDouble(bits);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2371static Half IBinaryFloatParseAndFormatInfo<Half>.BitsToFloat(ulong bits) => BitConverter.UInt16BitsToHalf((ushort)(bits));
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2239static float IBinaryFloatParseAndFormatInfo<float>.BitsToFloat(ulong bits) => BitConverter.UInt32BitsToSingle((uint)(bits));
1 reference to BitsToFloat
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1099result = TFloat.BitsToFloat(bits);