Home
last modified time | relevance | path

Searched refs:_stack (Results 1 – 25 of 2142) sorted by relevance

12345678910>>...86

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/made/
H A Dscript.cpp205 _stack.push(); in cmd_push()
217 _stack.setTop(_stack.top() + value); in cmd_add()
222 _stack.setTop(_stack.top() - value); in cmd_sub()
227 _stack.setTop(_stack.top() * value); in cmd_mul()
235 _stack.setTop(_stack.top() / value); in cmd_div()
243 _stack.setTop(_stack.top() % value); in cmd_mod()
248 _stack.setTop(_stack.top() & value); in cmd_band()
253 _stack.setTop(_stack.top() | value); in cmd_bor()
257 _stack.setTop(~_stack.top()); in cmd_bnot()
459 _stack.setTop(_stack.peek(_localStackPos + 4 + argIndex)); in cmd_arg()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/made/
H A Dscript.cpp205 _stack.push(); in cmd_push()
217 _stack.setTop(_stack.top() + value); in cmd_add()
222 _stack.setTop(_stack.top() - value); in cmd_sub()
227 _stack.setTop(_stack.top() * value); in cmd_mul()
235 _stack.setTop(_stack.top() / value); in cmd_div()
243 _stack.setTop(_stack.top() % value); in cmd_mod()
248 _stack.setTop(_stack.top() & value); in cmd_band()
253 _stack.setTop(_stack.top() | value); in cmd_bor()
257 _stack.setTop(~_stack.top()); in cmd_bnot()
459 _stack.setTop(_stack.peek(_localStackPos + 4 + argIndex)); in cmd_arg()
[all …]
/dports/math/vampire/vampire-4.5.1/Kernel/
H A DTermIterators.cpp40 if(_stack.isEmpty()) { in hasNext()
57 _stack.push(t); in hasNext()
81 if(_stack->isEmpty()) { in hasNext()
125 if(_stack.isEmpty()) { in hasNext()
169 _stack.pop(); in right()
246 tt=_stack.pop(); in hasNext()
247 ss=_stack.pop(); in hasNext()
280 : _stack(64) in TermFunIterator()
342 : _stack(64) in TermVarIterator()
355 : _stack(64) in TermVarIterator()
[all …]
H A DTermIterators.hpp73 _stack.reset(); in reset()
82 _stack.reset(); in reset()
155 _stack->reset(); in SubtermIterator()
183 _stack->reset(); in SubtermIterator()
190 _stack->push(t); in pushNext()
253 _stack.push(t); in pushNext()
280 : _stack(8), in NonVariableIterator()
284 _stack.push(term); in NonVariableIterator()
324 : _stack(8) in DisagreementSetIterator()
346 _stack.reset(); in reset()
[all …]
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/libcore/vm/
H A DMachine.cpp329 _stack(), in Machine()
1104 _stack.top(0) = _stack.top(1); in execute()
1117 _stack.top(0) = _stack.top(1); in execute()
2220 _stack.top(0) = toInt(_stack.top(0)); in execute()
2465 _stack.top(0) = ~toInt(_stack.top(0)); in execute()
2537 _stack.top(1) = toInt(_stack.top(1)) << toInt(_stack.top(0)); in execute()
2550 _stack.top(1) = toInt(_stack.top(1)) >> toInt(_stack.top(0)); in execute()
2576 _stack.top(1) = toInt(_stack.top(1)) & toInt(_stack.top(0)); in execute()
2587 _stack.top(1) = toInt(_stack.top(1)) | toInt(_stack.top(0)); in execute()
2599 _stack.top(1) = toInt(_stack.top(1)) ^ toInt(_stack.top(0)); in execute()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/ultima8/usecode/
H A Duc_machine.cpp655 p->_stack.push2(0); in execProcess()
669 p->_stack.push4(0); in execProcess()
684 p->_stack.push2(0); in execProcess()
1165 p->_stack.push(p->_stack.access(p->_bp + si8a), ui16b); in execProcess()
1199 LOGPF((" = %04Xh\n", p->_stack.access2(p->_stack.getSP()))); in execProcess()
1573 ui16a = p->_stack.access2(p->_stack.getSP() + si8a); in execProcess()
1582 ui16a = p->_stack.access2(p->_stack.getSP() + si8a); in execProcess()
1591 ui16a = p->_stack.access2(p->_stack.getSP() + si8a); in execProcess()
1924 ui16a = p->_stack.access2(p->_stack.getSP()); // Loop index in execProcess()
1925 ui16b = p->_stack.access2(p->_stack.getSP() + 2); // Loop list in execProcess()
[all …]
/dports/math/vampire/vampire-4.5.1/Lib/
H A DStack.hpp426 _stack(s) in Iterator()
445 return _pointer != _stack._stack; in hasNext()
452 ASS(_pointer > _stack._stack); in next()
467 ASS(_pointer >= _stack._stack); in del()
481 ASS(_pointer >= _stack._stack); in replace()
504 _stack(s) in ConstIterator()
512 return _pointer != _stack._stack; in hasNext()
519 ASS(_pointer > _stack._stack); in next()
652 ASS(_writer >= _stack._stack); in del()
666 ASS(_writer >= _stack._stack); in replace()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/glk/advsys/
H A Dvm.cpp155 _stack.top() = _stack.top() ? NIL : TRUE; in opNOT()
175 _stack.top() = (v == 0) ? 0 : _stack.top() / v; in opDIV()
180 _stack.top() = (v == 0) ? 0 : _stack.top() % v; in opREM()
194 _stack.top() = ~_stack.top(); in opBNOT()
199 _stack.top() = (_stack.top() < v) ? TRUE : NIL; in opLT()
204 _stack.top() = (_stack.top() == v) ? TRUE : NIL; in opEQ()
209 _stack.top() = (_stack.top() > v) ? TRUE : NIL; in opGT()
222 _stack.top() = getObjectProperty(_stack.top(), v); in opGETP()
275 _stack.resize(_stack.size() - argsSize); in opRETURN()
351 _stack.top() = getObjectField(_stack.top(), O_CLASS); in opCLASS()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/glk/advsys/
H A Dvm.cpp156 _stack.top() = _stack.top() ? NIL : TRUE; in opNOT()
176 _stack.top() = (v == 0) ? 0 : _stack.top() / v; in opDIV()
181 _stack.top() = (v == 0) ? 0 : _stack.top() % v; in opREM()
195 _stack.top() = ~_stack.top(); in opBNOT()
200 _stack.top() = (_stack.top() < v) ? TRUE : NIL; in opLT()
205 _stack.top() = (_stack.top() == v) ? TRUE : NIL; in opEQ()
210 _stack.top() = (_stack.top() > v) ? TRUE : NIL; in opGT()
223 _stack.top() = getObjectProperty(_stack.top(), v); in opGETP()
276 _stack.resize(_stack.size() - argsSize); in opRETURN()
352 _stack.top() = getObjectField(_stack.top(), O_CLASS); in opCLASS()
[all …]
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydevd_bundle/
H A Dpydevd_bytecode_utils.py102 self._stack = deque()
149 self._stack.pop()
177 self._stack.pop()
247 self._stack.pop()
251 self._stack.pop()
315 self._stack.pop()
350 self._stack.pop()
381 self._stack.pop()
535 self._stack.pop()
620 i = self._stack[-1]
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/runtime/remoting/
H A Dchannelsinkstacks.cs102 _stack = newStack; in Push()
110 if (_stack == null) in Pop()
122 _stack = _stack.PrevStack; in Pop()
132 _stack = _stack.PrevStack; in Pop()
154 _stack = _stack.PrevStack; in AsyncProcessResponse()
266 _stack = newStack; in Push()
285 _stack = _stack.PrevStack; in Pop()
295 _stack = _stack.PrevStack; in Pop()
317 _stack = _stack.PrevStack; in Store()
376 _stack = _stack.PrevStack; in AsyncProcessResponse()
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/undo/
H A DStack.h20 Operations _stack; variable
38 return _stack.empty(); in empty()
42 return _stack.size(); in size()
46 return _stack.back(); in back()
50 return _stack.back(); in back()
54 return _stack.front(); in front()
63 _stack.pop_front(); in pop_front()
67 delete _stack.back(); in pop_back()
68 _stack.pop_back(); in pop_back()
73 for (Operations::iterator i = _stack.begin(); i != _stack.end(); ++i) { in clear()
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/JEGA/src/
H A DMetricTracker.cpp131 return oldSize < this->_stack.size() ? this->_stack.size()-oldSize : 0; in SetStackMaxDepth()
166 EDDY_ASSERT(elem1 < this->_stack.size()); in GetPercentDifference()
167 EDDY_ASSERT(elem2 < this->_stack.size()); in GetPercentDifference()
169 const double v1 = this->_stack[elem1]; in GetPercentDifference()
170 const double v2 = this->_stack[elem2]; in GetPercentDifference()
180 if(this->_stack.empty()) in MaxValue()
187 max_element(this->_stack.begin(), this->_stack.end()) in MaxValue()
204 if(this->_stack.empty()) in MinValue()
211 min_element(this->_stack.begin(), this->_stack.end()) in MinValue()
238 if(this->_stack.size() > this->_maxDepth) in PruneTheStack()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/common/
H A Dstack.h51 _stack[_size++] = x; in push()
76 return _stack[i];
81 return _stack[i];
96 Array<T> _stack;
109 _stack.clear(); in clear()
113 _stack.push_back(x); in push()
117 return _stack.back(); in top()
121 return _stack.back(); in top()
126 _stack.pop_back(); in pop()
135 return _stack[i];
[all …]
/dports/games/residualvm/residualvm-0.3.1/common/
H A Dstack.h51 _stack[_size++] = x; in push()
76 return _stack[i];
81 return _stack[i];
96 Array<T> _stack;
109 _stack.clear(); in clear()
113 _stack.push_back(x); in push()
117 return _stack.back(); in top()
121 return _stack.back(); in top()
126 _stack.pop_back(); in pop()
135 return _stack[i];
[all …]
/dports/games/scummvm/scummvm-2.5.1/common/
H A Dstack.h60 _stack[_size++] = x; in push()
85 return _stack[i];
90 return _stack[i];
105 Array<T> _stack;
118 _stack.clear(); in clear()
122 _stack.push_back(x); in push()
126 return _stack.back(); in top()
130 return _stack.back(); in top()
135 _stack.pop_back(); in pop()
144 return _stack[i];
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webgpu-cts/src/src/unittests/
H A DgetStackTrace.spec.ts17 _stack: `Error:
27 _stack: `Error:
36 _stack: `Error: expectation had no effect: suite1:foo:
49 _stack: `Error: hello
65 _stack: `@http://localhost:8080/out/unittests/test_group.spec.js:48:11
82 _stack: `http://localhost:8080/out/unittests/test_group.spec.js:48:20
91 _stack: `Error
102 _stack: `Error: hello
115 _stack: `Error: hello
130 ex.stack = t.params._stack;
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/wintermute/base/scriptables/
H A Dscript.cpp60 _stack = nullptr; in IMPLEMENT_PERSISTENT()
415 delete _stack; in cleanup()
416 _stack = nullptr; in cleanup()
696 _stack->pop(); in executeInstruction()
705 _stack->push(var); in executeInstruction()
763 _stack->pushNULL(); in executeInstruction()
784 _stack->push(val); in executeInstruction()
786 _stack->pushNULL(); in executeInstruction()
808 _stack->push(_reg1); in executeInstruction()
834 op2 = _stack->pop(); in executeInstruction()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/wintermute/base/scriptables/
H A Dscript.cpp69 _stack = nullptr; in IMPLEMENT_PERSISTENT()
428 delete _stack; in cleanup()
429 _stack = nullptr; in cleanup()
754 _stack->pop(); in executeInstruction()
763 _stack->push(var); in executeInstruction()
821 _stack->pushNULL(); in executeInstruction()
842 _stack->push(val); in executeInstruction()
844 _stack->pushNULL(); in executeInstruction()
866 _stack->push(_reg1); in executeInstruction()
892 op2 = _stack->pop(); in executeInstruction()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webgpu-cts/src/src/suites/unittests/
H A DgetStackTrace.spec.ts15 ex.stack = t.params._stack;
16 t.expect(ex.stack === t.params._stack);
29 _stack: `Error:
39 _stack: `Error:
48 _stack: `Error: expectation had no effect: suite1:foo:
61 _stack: `Error: hello
69 _stack: `fail@http://localhost:8080/out/framework/logger.js:104:30
83 _stack: `fail@http://localhost:8080/out/framework/logger.js:104:39
103 _stack: `Error
114 _stack: `Error: hello
[all …]
/dports/devel/py-pika/pika-1.1.0/pika/
H A Dcallback.py88 … if prefix not in args[0]._stack or key not in args[0]._stack[prefix]: # pylint: disable=W0212
113 self._stack = dict()
142 if prefix not in self._stack:
170 self._stack = dict()
183 if prefix not in self._stack or not self._stack[prefix]:
185 del self._stack[prefix]
197 if not prefix in self._stack or not key in self._stack[prefix]:
218 if prefix not in self._stack or key not in self._stack[prefix]:
333 if key and key in self._stack[prefix] and not self._stack[prefix][key]:
335 if prefix in self._stack and not self._stack[prefix]:
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/kyra/script/
H A Dscript_eob.cpp147 _stack = new int16[30]; in EoBInfProcessor()
157 delete[] _stack; in ~EoBInfProcessor()
789 _stack[_stackIndex++] = a; in oeob_eval_v1()
810 _stack[_stackIndex++] = b; in oeob_eval_v1()
825 _stack[_stackIndex++] = b; in oeob_eval_v1()
911 a = _stack[--_stackIndex]; in oeob_eval_v1()
912 b = _stack[--_stackIndex]; in oeob_eval_v1()
918 a = _stack[--_stackIndex]; in oeob_eval_v1()
919 b = _stack[--_stackIndex]; in oeob_eval_v1()
925 a = _stack[--_stackIndex]; in oeob_eval_v1()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/kyra/script/
H A Dscript_eob.cpp147 _stack = new int16[30]; in EoBInfProcessor()
157 delete[] _stack; in ~EoBInfProcessor()
770 _stack[_stackIndex++] = a; in oeob_eval_v1()
791 _stack[_stackIndex++] = b; in oeob_eval_v1()
806 _stack[_stackIndex++] = b; in oeob_eval_v1()
892 a = _stack[--_stackIndex]; in oeob_eval_v1()
893 b = _stack[--_stackIndex]; in oeob_eval_v1()
899 a = _stack[--_stackIndex]; in oeob_eval_v1()
900 b = _stack[--_stackIndex]; in oeob_eval_v1()
906 a = _stack[--_stackIndex]; in oeob_eval_v1()
[all …]
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/components/
H A Dtrackinfo_layout.cpp48 _stackLi = new QWidgetItem(_stack); in TrackInfoLayout()
202 int w = _stack->sizeHint().width(); in sizeHint()
228 if(_stack->visibleWidget()) in scrollValueChanged()
291 doResize(_stack->size()); in resizeEvent()
298 _stack->raiseWidget(idx); in raiseWidget()
299 doResize(_stack->size()); in raiseWidget()
309 _stack->addWidget(w, idx); in addWidget()
310 doResize(_stack->size()); in addWidget()
315 return _stack->getWidget(idx); in getWidget()
320 return _stack->visibleWidget(); in visibleWidget()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/src/System/Diagnostics/
H A DCorrelationManager.cs20 _stackWrapper = new AsyncLocalStackWrapper(_stack); in CorrelationManager()
57 private readonly AsyncLocal<StackNode> _stack; field in System.Diagnostics.CorrelationManager.AsyncLocalStackWrapper
62 _stack = stack; in AsyncLocalStackWrapper()
65 public override void Clear() => _stack.Value = null; in Clear()
69 public override int Count => _stack.Value?.Count ?? 0;
73 public override object Peek() => _stack.Value?.Value; in Peek()
77 for (StackNode n = _stack.Value; n != null; n = n.Prev) in Contains()
110 StackNode n = _stack.Value; in Pop()
115 _stack.Value = n.Prev; in Pop()
121 _stack.Value = new StackNode(obj, _stack.Value); in Push()
[all …]

12345678910>>...86