2 writes to m_iCount
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1505
m_iCount
= 0;
1562
checked {
m_iCount
++; }
11 references to m_iCount
System.Private.CoreLib (11)
src\System\Reflection\Emit\RuntimeILGenerator.cs (11)
1515
if (
m_iCount
== 0)
1520
int i =
m_iCount
- 1;
1559
m_ScopeActions[
m_iCount
] = sa;
1560
m_iOffsets[
m_iCount
] = iOffset;
1561
m_localSymInfos[
m_iCount
] = null;
1572
if (
m_iCount
== 0)
1579
else if (
m_iCount
== m_iOffsets.Length)
1583
int newSize = checked(
m_iCount
* 2);
1585
Array.Copy(m_iOffsets, temp,
m_iCount
);
1589
Array.Copy(m_ScopeActions, tempSA,
m_iCount
);
1593
Array.Copy(m_localSymInfos, tempLSI,
m_iCount
);