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