10 references to WriteInt16
PresentationFramework (2)
MS\Internal\IO\Packaging\indexingfiltermarshaler.cs (1)
107Marshal.WriteInt16(p, s.Length * _int16Size, 0);
MS\Internal\IO\Packaging\XpsFilter.cs (1)
257Marshal.WriteInt16(pBuffer, (int)bufCharacterCount * _int16Size, 0);
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
502Marshal.WriteInt16(ptr, offset, value);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (3)
436public static void WriteInt16(IntPtr ptr, short val) => WriteInt16(ptr, 0, val); 438public static void WriteInt16(IntPtr ptr, int ofs, char val) => WriteInt16(ptr, ofs, (short)val); 445public static void WriteInt16(IntPtr ptr, char val) => WriteInt16(ptr, 0, (short)val);
src\System\Runtime\InteropServices\Marshal.CoreCLR.cs (1)
142WriteValueSlow(ptr, ofs, val, WriteInt16);
UIAutomationTypes (3)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Win32\NativeMethodsCLR.cs (3)
2027Marshal.WriteInt16(mem, 2, reserved1); 2028Marshal.WriteInt16(mem, 4, reserved2); 2029Marshal.WriteInt16(mem, 6, reserved3);