3 implementations of BitsToFloat
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2323
static double IBinaryFloatParseAndFormatInfo<double>.
BitsToFloat
(ulong bits) => BitConverter.UInt64BitsToDouble(bits);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2371
static Half IBinaryFloatParseAndFormatInfo<Half>.
BitsToFloat
(ulong bits) => BitConverter.UInt16BitsToHalf((ushort)(bits));
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2239
static 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)
1099
result = TFloat.
BitsToFloat
(bits);