system\reflection\emit\ilgenerator.cs (23)
176m_RelocFixupList[m_RelocFixupCount++] = m_length;
255if (m_length == 0)
259newSize = m_length;
326if (m_length + size >= m_ILStream.Length)
328if (m_length + size >= 2 * m_ILStream.Length)
330m_ILStream = EnlargeArray(m_ILStream, m_length + size);
341m_length = PutInteger4InArray(value, m_length, m_ILStream);
807AddFixup(label, m_length, 1);
810AddFixup(label, m_length, 4);
833AddFixup( labels[i], m_length, remaining );
983__ExceptionInfo exceptionInfo = new __ExceptionInfo(m_length, endLabel);
1028current.Done(m_length);
1043current.MarkFilterAddr(m_length);
1072current.MarkCatchAddr(m_length, exceptionType);
1086current.MarkFaultAddr(m_length);
1102catchEndAddr = m_length;
1114catchEndAddr = m_length;
1115current.MarkFinallyAddr(m_length, catchEndAddr);
1155m_labelList[labelIndex]=m_length;
1340m_LineNumberInfo.AddLineNumberInfo(document, m_length, startLine, startColumn, endLine, endColumn);
1345m_ScopeTree.AddScopeInfo(ScopeAction.Open, m_length);
1350m_ScopeTree.AddScopeInfo(ScopeAction.Close, m_length);
1357return m_length;