4 implementations of BitsToFloat
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2320static double IBinaryFloatParseAndFormatInfo<double>.BitsToFloat(ulong bits) => BitConverter.UInt64BitsToDouble(bits);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2367static Half IBinaryFloatParseAndFormatInfo<Half>.BitsToFloat(ulong bits) => BitConverter.UInt16BitsToHalf((ushort)(bits));
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2148static BFloat16 IBinaryFloatParseAndFormatInfo<BFloat16>.BitsToFloat(ulong bits) => new BFloat16((ushort)(bits));
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2236static 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)
1133result = TFloat.BitsToFloat(bits);