4 references to ToInt64
ILCompiler.Compiler (1)
Compiler\TypePreinit.cs (1)
2428
public override long AsInt64() => BitConverter.
ToInt64
(AsExactByteCount(8), 0);
Microsoft.ML.FastTree (1)
Utils\ToByteArrayExtensions.cs (1)
149
long a = BitConverter.
ToInt64
(buffer, position);
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (2)
667
public static ulong ToUInt64(byte[] value, int startIndex) => unchecked((ulong)
ToInt64
(value, startIndex));
814
public static double ToDouble(byte[] value, int startIndex) => Int64BitsToDouble(
ToInt64
(value, startIndex));