2 writes to _offsets
Microsoft.CodeAnalysis (2)
DiaSymReader\Writer\SymUnmanagedSequencePointsWriter.cs (2)
31
_offsets
= new int[capacity];
44
Array.Resize(ref
_offsets
, newLength);
4 references to _offsets
Microsoft.CodeAnalysis (4)
DiaSymReader\Writer\SymUnmanagedSequencePointsWriter.cs (4)
40
if (length >
_offsets
.Length)
42
int newLength = Math.Max(length, (
_offsets
.Length + 1) * 2);
79
_offsets
[index] = offset;
93
_offsets
,