7 references to RentArray
Microsoft.CodeAnalysis.Razor.Workspaces (7)
TextDifferencing\SourceTextDiffer.CharDiffer.cs (3)
48
_appendBuffer =
RentArray
(BufferSize);
50
_oldBuffer = new(
RentArray
(BufferSize), 0, BufferSize);
53
_newBuffer = new(
RentArray
(BufferSize), 0, BufferSize);
TextDifferencing\SourceTextDiffer.cs (1)
55
array =
RentArray
(minimumLength);
TextDifferencing\SourceTextDiffer.TextSpanDiffer.cs (3)
27
_oldBuffer =
RentArray
(1024);
28
_newBuffer =
RentArray
(1024);
29
_appendBuffer =
RentArray
(1024);