1 write to pElems
System.Windows.Forms.Primitives.Tests (1)
Interop\Ole32\CADWORDTests.cs (1)
38pElems = (uint*)Marshal.AllocCoTaskMem(sizeof(uint) * values.Length)
5 references to pElems
System.Windows.Forms.Primitives (3)
Windows\Win32\System\Ole\CADWORD.cs (3)
14return (cElems == 0 || pElems is null) 16: new Span<uint>(pElems, (int)cElems).ToArray(); 20Marshal.FreeCoTaskMem((nint)pElems);
System.Windows.Forms.Primitives.Tests (2)
Interop\Ole32\CADWORDTests.cs (2)
41allocations?.Add((IntPtr)ca.pElems); 43Span<uint> elements = new(ca.pElems, values.Length);