8 references to BufferScope
System.Drawing.Common (3)
System\Drawing\Image.cs (1)
886
using BufferScope<Guid> guids =
new
(stackalloc Guid[16], (int)dimensions);
System\Drawing\Imaging\ImageAttributes.cs (2)
361
using BufferScope<(ARGB, ARGB)> buffer =
new
(stackBuffer, map.Length);
386
using BufferScope<(ARGB, ARGB)> buffer =
new
(stackBuffer, map.Length);
System.Private.Windows.Core (1)
Windows\Win32\Graphics\Gdi\ArgbBuffer.cs (1)
26
_bufferScope = new
BufferScope
<ARGB>(new Span<ARGB>(s, StackSpace), length);
System.Windows.Forms (3)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
2206
using BufferScope<char> buffer =
new
(stackalloc char[128], minimumLength: maxLength);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1571
using BufferScope<char> buffer =
new
(stackalloc char[128], minimumLength: maxLength + 1);
System\Windows\Forms\Rendering\ControlPaint.cs (1)
615
using BufferScope<int> buffer =
new
(stackalloc int[40], totalData);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
248
using BufferScope<char> charsBuffer =
new
(stackalloc char[256], maxLength);