Lines Matching refs:CounterStack
182 std::stack<StackElem> CounterStack; in evaluate() local
183 CounterStack.push({C}); in evaluate()
187 while (!CounterStack.empty()) { in evaluate()
188 StackElem &Current = CounterStack.top(); in evaluate()
193 CounterStack.pop(); in evaluate()
199 CounterStack.pop(); in evaluate()
206 CounterStack.push(StackElem{E.LHS}); in evaluate()
210 CounterStack.push(StackElem{E.RHS}); in evaluate()
217 CounterStack.pop(); in evaluate()
547 std::stack<StackElem> CounterStack; in getMaxCounterID() local
548 CounterStack.push({C}); in getMaxCounterID()
552 while (!CounterStack.empty()) { in getMaxCounterID()
553 StackElem &Current = CounterStack.top(); in getMaxCounterID()
558 CounterStack.pop(); in getMaxCounterID()
562 CounterStack.pop(); in getMaxCounterID()
567 CounterStack.pop(); in getMaxCounterID()
571 CounterStack.push(StackElem{E.LHS}); in getMaxCounterID()
575 CounterStack.push(StackElem{E.RHS}); in getMaxCounterID()
581 CounterStack.pop(); in getMaxCounterID()