19 references to ReadInt32
PresentationCore (1)
System\Windows\Media\Imaging\PropVariant.cs (1)
535array[i] = (uint) Marshal.ReadInt32(ca.pElems, i*sizeof(uint));
ReachFramework (5)
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (5)
446result[i] = (uint)Marshal.ReadInt32(baseAddr, offset); 498int x = Marshal.ReadInt32(baseAddr, offset); 499int y = Marshal.ReadInt32(baseAddr, offset + (itemByteSize / 2)); 526int w = Marshal.ReadInt32(baseAddr, offset); 527int h = Marshal.ReadInt32(baseAddr, offset + (itemByteSize / 2));
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
275value = Marshal.ReadInt32(ptr, offset);
System.Data.OleDb (5)
DbPropSet.cs (1)
142int cProperties = Marshal.ReadInt32(ptr, offset + IntPtr.Size);
OleDbConnectionInternal.cs (2)
549if ((1 == literalCount) && Marshal.ReadInt32(literalInfo, ODB.OffsetOf_tagDBLITERALINFO_it) == literal) 609supportedSchemas[i]._restrictions = Marshal.ReadInt32(schemaRestrictions, i * 4);
PropertyInfoSet.cs (1)
123int infoCount = Marshal.ReadInt32(ptr, offset + IntPtr.Size);
System\Data\ProviderBase\DbBuffer.cs (1)
248value = Marshal.ReadInt32(ptr, offset);
System.DirectoryServices (1)
System\DirectoryServices\DirectorySearcher.cs (1)
914int status = Marshal.ReadInt32(tempPtr, 32);
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (1)
349public static int ReadInt32(IntPtr ptr) => ReadInt32(ptr, 0);
System\Runtime\InteropServices\Marshal.NativeAot.cs (1)
217return ReadValueSlow<int>(ptr, ofs, &ReadInt32);
System.Speech (4)
Internal\Synthesis\AudioBase.cs (3)
385wfx.nSamplesPerSec = Marshal.ReadInt32(ptr, 4); 386wfx.nAvgBytesPerSec = Marshal.ReadInt32(ptr, 8); 405avgBytesPerSec = Marshal.ReadInt32(ptr, 8);
Result\RecognitionResult.cs (1)
301int headerSize = Marshal.ReadInt32(buffer, 4); // Read header size directly from buffer - 4 is the offset of cbHeaderSize.