2 writes to m_ILStream
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
90m_ILStream = new byte[Math.Max(size, DefaultSize)]; 263m_ILStream = temp;
15 references to m_ILStream
System.Private.CoreLib (15)
src\System\Reflection\Emit\RuntimeILGenerator.cs (15)
123BinaryPrimitives.WriteInt16BigEndian(m_ILStream.AsSpan(m_length), opcodeValue); 128m_ILStream[m_length++] = (byte)opcodeValue; 200Array.Copy(m_ILStream, newBytes, m_length); 253if (m_length + size >= m_ILStream.Length) 261byte[] temp = new byte[Math.Max(m_ILStream.Length * 2, m_length + size)]; 262Array.Copy(m_ILStream, temp, m_ILStream.Length); 269BinaryPrimitives.WriteInt32LittleEndian(m_ILStream.AsSpan(m_length), value); 385m_ILStream[m_length++] = arg; 393BinaryPrimitives.WriteInt16LittleEndian(m_ILStream.AsSpan(m_length), arg); 726BinaryPrimitives.WriteInt64LittleEndian(m_ILStream.AsSpan(m_length), arg); 734BinaryPrimitives.WriteInt32LittleEndian(m_ILStream.AsSpan(m_length), BitConverter.SingleToInt32Bits(arg)); 742BinaryPrimitives.WriteInt64LittleEndian(m_ILStream.AsSpan(m_length), BitConverter.DoubleToInt64Bits(arg)); 886BinaryPrimitives.WriteInt16LittleEndian(m_ILStream.AsSpan(m_length), (short)tempVal); 896m_ILStream[m_length++] = (byte)tempVal;