5 references to BufferScope
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)
2195
using BufferScope<char> buffer =
new
(stackalloc char[128], minimumLength: maxLength);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1573
using BufferScope<char> buffer =
new
(stackalloc char[128], minimumLength: maxLength + 1);
System\Windows\Forms\Rendering\ControlPaint.cs (1)
580
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);