35 writes to m_length
mscorlib (35)
system\reflection\emit\ilgenerator.cs (35)
136m_length = 0; 183m_ILStream[m_length++] = (byte)(opcode.Value >> 8); 186m_ILStream[m_length++] = (byte)opcode.Value; 341m_length = PutInteger4InArray(value, m_length, m_ILStream); 450m_ILStream[m_length++]=arg; 462m_ILStream[m_length++]=(byte)(256+arg); 464m_ILStream[m_length++]=(byte) arg; 473m_ILStream[m_length++]=(byte) arg; 474m_ILStream[m_length++]=(byte) (arg>>8); 753m_ILStream[m_length++] = (byte) arg; 754m_ILStream[m_length++] = (byte) (arg>>8); 755m_ILStream[m_length++] = (byte) (arg>>16); 756m_ILStream[m_length++] = (byte) (arg>>24); 757m_ILStream[m_length++] = (byte) (arg>>32); 758m_ILStream[m_length++] = (byte) (arg>>40); 759m_ILStream[m_length++] = (byte) (arg>>48); 760m_ILStream[m_length++] = (byte) (arg>>56); 768m_ILStream[m_length++] = (byte) tempVal; 769m_ILStream[m_length++] = (byte) (tempVal>>8); 770m_ILStream[m_length++] = (byte) (tempVal>>16); 771m_ILStream[m_length++] = (byte) (tempVal>>24); 779m_ILStream[m_length++] = (byte) tempVal; 780m_ILStream[m_length++] = (byte) (tempVal>>8); 781m_ILStream[m_length++] = (byte) (tempVal>>16); 782m_ILStream[m_length++] = (byte) (tempVal>>24); 783m_ILStream[m_length++] = (byte) (tempVal>>32); 784m_ILStream[m_length++] = (byte) (tempVal>>40); 785m_ILStream[m_length++] = (byte) (tempVal>>48); 786m_ILStream[m_length++] = (byte) (tempVal>>56); 808m_length++; 811m_length+=4; 834m_length += 4; 933m_ILStream[m_length++]=(byte) tempVal; 934m_ILStream[m_length++]=(byte) (tempVal>>8); 943m_ILStream[m_length++]=(byte)tempVal;
23 references to m_length
mscorlib (23)
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;