6 references to ReadInt64
PresentationCore (1)
System\Windows\Media\Imaging\PropVariant.cs (1)
550array[i] = (UInt64) Marshal.ReadInt64(ca.pElems, i*sizeof(UInt64));
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
327value = Marshal.ReadInt64(ptr, offset);
System.Data.OleDb (1)
System\Data\ProviderBase\DbBuffer.cs (1)
300value = Marshal.ReadInt64(ptr, offset);
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (2)
366return (nint)ReadInt64(ptr, ofs); 396public static long ReadInt64(IntPtr ptr) => ReadInt64(ptr, 0);
System\Runtime\InteropServices\Marshal.NativeAot.cs (1)
225return ReadValueSlow<long>(ptr, ofs, &ReadInt64);