11 writes to runstackpos
System.Text.RegularExpressions (11)
System\Text\RegularExpressions\Regex.cs (1)
595
runner.
runstackpos
= runner.runstack!.Length;
System\Text\RegularExpressions\RegexInterpreter.cs (6)
171
private void StackPush(int i1) => runstack![--
runstackpos
] = i1;
181
runstackpos
= localrunstackpos;
184
private void StackPop() =>
runstackpos
++;
187
private void StackPop(int framesize) =>
runstackpos
+= framesize;
344
runstackpos
= runstack.Length;
362
runstackpos
= runstack.Length;
System\Text\RegularExpressions\RegexRunner.cs (4)
261
runstackpos
= runstack!.Length;
307
runstackpos
= runstack!.Length;
333
runstackpos
= stacksize;
471
runstackpos
+= runstack.Length;
4 references to runstackpos
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\RegexInterpreter.cs (3)
176
int localrunstackpos =
runstackpos
;
193
private int StackPeek() => runstack![
runstackpos
- 1];
196
private int StackPeek(int i) => runstack![
runstackpos
- i - 1];
System\Text\RegularExpressions\RegexRunner.cs (1)
396
if (
runstackpos
< limit)