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)
2195using BufferScope<char> buffer = new(stackalloc char[128], minimumLength: maxLength);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1573using BufferScope<char> buffer = new(stackalloc char[128], minimumLength: maxLength + 1);
System\Windows\Forms\Rendering\ControlPaint.cs (1)
580using BufferScope<int> buffer = new(stackalloc int[40], totalData);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
248using BufferScope<char> charsBuffer = new(stackalloc char[256], maxLength);