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