8 references to Int64BitsToDouble
mscorlib (1)
system\double.cs (1)
54internal static double NegativeZero = BitConverter.Int64BitsToDouble(unchecked((long)0x8000000000000000));
System.Data (1)
fx\src\data\System\Data\ProviderBase\DbBuffer.cs (1)
192return BitConverter.Int64BitsToDouble(value);
System.Data.SqlXml (6)
System\Xml\Xsl\XPathConvert.cs (6)
570return BitConverter.Int64BitsToDouble((long)dblHi << 32 | dblLo); 959dblT = BitConverter.Int64BitsToDouble(0x4FF00000L << 32); 969dblT = BitConverter.Int64BitsToDouble((long)dblHi << 32 | DblLo(dblT)); 978dblT = BitConverter.Int64BitsToDouble((long)dblHi << 32 | dblLo); 2446dbl = BitConverter.Int64BitsToDouble(BitConverter.DoubleToInt64Bits(dbl) - 1); 2465dbl = BitConverter.Int64BitsToDouble(BitConverter.DoubleToInt64Bits(dbl) + 1);