Home
last modified time | relevance | path

Searched refs:opstack (Results 1 – 25 of 136) sorted by relevance

123456

/dports/sysutils/istio/istio-1.6.7/mixer/pkg/il/interpreter/
H A DinterpreterRun.gen.go64 copy(opstack, in.stepper.opstack)
135 opstack[sp] = opstack[sp-1]
145 opstack[sp] = opstack[sp-2]
146 opstack[sp+1] = opstack[sp-1]
289 if opstack[sp-1] == opstack[sp-3] && opstack[sp-2] == opstack[sp-4] {
342 if opstack[sp-1] == t1 && opstack[sp-2] == t2 {
1002 copy(in.stepper.opstack, opstack)
1017 opstack[sp+t3] = opstack[t2-t1+t3]
1194 ti64 = int64(opstack[sp-1]) + int64(opstack[sp-2])<<32
1247 ti64 = int64(opstack[sp-1]) + int64(opstack[sp-2])<<32
[all …]
H A DinterpreterRun.got154 copy(opstack, in.stepper.opstack)
203 opstack[sp] = opstack[sp-1]
209 opstack[sp] = opstack[sp-2]
210 opstack[sp+1] = opstack[sp-1]
285 if opstack[sp-1] == opstack[sp-3] && opstack[sp-2] == opstack[sp-4] {
317 if opstack[sp-1] == t1 && opstack[sp-2] == t2 {
737 copy(in.stepper.opstack, opstack)
752 opstack[sp+t3] = opstack[t2-t1+t3]
834 ti64 = int64(opstack[sp-1]) + int64(opstack[sp-2])<<32
868 ti64 = int64(opstack[sp-1]) + int64(opstack[sp-2])<<32
[all …]
H A Dstepper.go33 opstack []uint32 member
59 opstack: make([]uint32, opStackSize),
131 fmt.Fprintf(b, "%d ", s.opstack[i])
/dports/science/silo/silo-4.10.2-bsd/tools/browser/
H A Dparse.c566 opstack = obj_new(C_CONS, b1, opstack); in parse_stmt()
574 opstack = obj_dest (opstack); in parse_stmt()
660 if (opstack) opstack = obj_dest (opstack); in parse_stmt()
746 opstack = obj_dest (opstack); in parse_term()
749 opstack = obj_new (C_CONS, tmp, opstack); in parse_term()
753 opstack = obj_dest (opstack); in parse_term()
758 opstack = obj_dest (opstack); in parse_term()
772 opstack = obj_dest (opstack); in parse_term()
775 opstack = obj_new (C_CONS, tmp, opstack); in parse_term()
780 opstack = obj_dest (opstack); in parse_term()
[all …]
/dports/lang/newlisp/newlisp-10.7.5/modules/
H A Dinfix.lsp84 (set 'opstack '())
87 ("(" (push tkn opstack))
92 (while (not (empty? opstack))
105 (while (not (= (first opstack) "("))
107 (pop opstack))
114 (while (and opstack
115 (<= (lookup tkn operators 3) (lookup (first opstack) operators 3)))
117 (push tkn opstack))
124 (if (empty? opstack)
126 (set 'ops (pop opstack))
/dports/audio/sfront/sfront-0.99/src/
H A Dwriteop.c379 opstack.defnode = tptr; in printopcall()
1120 opstack.defnode = tptr; in printoparraygeneral()
1122 opstack.numinst = 0; in printoparraygeneral()
1226 opstack.defnode = tptr; in printoparraychildren()
1243 opstack.numinst = 0; in printoparraychildren()
1364 if (opstack != NULL) in namingprefix()
1594 if (opstack) in makeparamindex()
1765 if (opstack) in maketableindex()
1856 if (opstack == NULL) in maketableindex()
1898 if (opstack && opstack->next) in maketableindex()
[all …]
/dports/games/xconq/xconq-7.5.0-0pre.0.20050612/kernel/
H A Daiscore.cc438 if (opstack) in copy_to()
439 skanal->opstack = opstack->clone_list(); in copy_to()
556 if (opstack) in pop_test_op()
557 opstack = (AI_SKANode_TestOp *)opstack->next; in pop_test_op()
1703 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
1730 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
1757 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
1784 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
1811 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
1838 if (skanal->opstack && (skanal->opstack->op == AI_SKT_NOT)) { in analyze_sk_arith_comp_test()
[all …]
/dports/multimedia/mpv/mpv-0.34.1/waftools/
H A Ddeps_parser.py46 opstack = []
67 while len(opstack) and opstack[-1] != '(' and \
68 Precedence[opstack[-1]] > Precedence[tok]:
69 out(opstack.pop())
70 opstack.append(tok)
72 opstack.append(tok)
75 if not len(opstack):
77 sym = opstack.pop()
83 while len(opstack):
84 out(opstack.pop())
/dports/games/warzone2100/warzone2100/src/3rdparty/
H A Dpropertymatcher.cpp197 std::vector<const op_s *> opstack; in evaluateConditionString() local
200 auto push_opstack = [&opstack](const op_s *op) { in evaluateConditionString()
201 opstack.push_back(op); in evaluateConditionString()
203 auto pop_opstack = [&opstack]() -> const op_s * { in evaluateConditionString()
205 if (!opstack.empty()) in evaluateConditionString()
207 result = opstack.back(); in evaluateConditionString()
208 opstack.pop_back(); in evaluateConditionString()
233 while (!opstack.empty() && opstack.back()->op != "(") { in evaluateConditionString()
249 while (!opstack.empty() && op->prec < opstack.back()->prec) { in evaluateConditionString()
259 while (!opstack.empty() && op->prec <= opstack.back()->prec) { in evaluateConditionString()
[all …]
/dports/mail/crm114/crm114-20100106-BlameMichelson.src/
H A Dcrm_math_exec.c606 opstack [0] = '\0'; in stralmath()
681 opstack[sp] = 0; in stralmath()
729 opstack[sp] = ( buf[ip] & 0xFF ); in stralmath()
737 opstack[sp] = ((opstack[sp] << 8) | buf[ip+1]); in stralmath()
785 opstack[sp] = 0; in stralmath()
831 switch (opstack[sp]) in stralmath()
928 (short)opstack[sp]); in stralmath()
930 if (opstack[sp] == 'x' || opstack[sp] == 'X') in stralmath()
945 rightarg, (short)opstack[sp]); in stralmath()
955 if (opstack[sp] != 'x' && in stralmath()
[all …]
/dports/x11-toolkits/gnustep-back/libs-back-back-0_28_0/Source/gsc/
H A DGSContext.m239 GSIArrayEmpty((GSIArray)opstack);
240 NSZoneFree([self zone], opstack);
870 ctxt_pop(g, opstack, GSGState);
891 ctxt_pop(g, opstack, GSGState);
1021 ctxt_pop(obj, opstack, NSObject);
1039 ctxt_push(obj, opstack);
1054 GSIArrayEmpty((GSIArray)opstack);
1067 ctxt_push(obj, opstack);
1081 ctxt_push(obj, opstack);
1103 ctxt_push(obj, opstack);
[all …]
/dports/devel/z88dk/z88dk/src/cpp/
H A Dcpp5.c232 OPTAB opstack[NEXP]; /* Operand stack */
236 opp = opstack;
300 if (opp >= &opstack[NEXP]) {
327 dumpstack(opstack, opp, value, valp);
367 dumpstack(opstack, opp, value, valp);
372 dumpstack(opstack, opp, value, valp);
908 dumpstack(opstack, opp, value, valp)
909 OPTAB opstack[NEXP]; /* Operand stack */
915 while (opp > opstack) {
916 printf(" [%2d] %2d %03o %d %s\n", opp - opstack,
/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/imap/
H A Dsearch_squat.c72 struct opstack { struct
90 struct opstack *stack; argument
163 struct opstack *o = bb->stack+i; in opstack_dump()
181 static struct opstack *opstack_top(SquatBuilderData *bb) in opstack_top()
186 static struct opstack *opstack_push(SquatBuilderData *bb, int op) in opstack_push()
188 struct opstack *top; in opstack_push()
217 struct opstack *child; in opstack_pop()
218 struct opstack *parent; in opstack_pop()
296 struct opstack *parent = opstack_top(bb); in match()
297 struct opstack *top; in match()
[all …]
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/imap/
H A Dsearch_squat.c72 struct opstack { struct
90 struct opstack *stack; argument
164 struct opstack *o = bb->stack+i; in opstack_dump()
182 static struct opstack *opstack_top(SquatBuilderData *bb) in opstack_top()
187 static struct opstack *opstack_push(SquatBuilderData *bb, int op) in opstack_push()
189 struct opstack *top; in opstack_push()
218 struct opstack *child; in opstack_pop()
219 struct opstack *parent; in opstack_pop()
297 struct opstack *parent = opstack_top(bb); in match()
298 struct opstack *top; in match()
[all …]
/dports/math/physcalc/physcalc-2.4_1/
H A Dphyssolv.c320 int op_stack[MAXSTACK],*opstack,op; /* Stack for operands */ local
327 opstack = op_stack;
330 *opstack = 0;
336 *++opstack = op;
345 while ( priority[op] <= priority[*opstack] ) {
346 if ( (priority[op] == priority[*opstack]) && (priority[op]==0) )
349 if (optype[*opstack]==2) { /* It's a prefix operator */
350 n2 = alloclnode(LNODE + *opstack);
360 n2 = alloclnode(LNODE + *opstack);
372 opstack--; /* pull number and operand off stack */
[all …]
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/regex/internal/
H A Dparser.d1299 OpStack opstack; in parseCharsetImpl() local
1337 while (cond(opstack.top)) in parseCharsetImpl()
1341 if (opstack.empty) in parseCharsetImpl()
1353 opstack.push(Operator.Open); in parseCharsetImpl()
1378 opstack.pop(); in parseCharsetImpl()
1379 if (!next() || opstack.empty) in parseCharsetImpl()
1390 opstack.push(pair[1]); in parseCharsetImpl()
1400 opstack.push(pair[1]); in parseCharsetImpl()
1404 }while (!empty || !opstack.empty); in parseCharsetImpl()
1405 while (!opstack.empty) in parseCharsetImpl()
[all …]
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Dsearch_squat.c72 struct opstack { struct
90 struct opstack *stack; argument
169 struct opstack *o = bb->stack+i; in opstack_dump()
187 static struct opstack *opstack_top(SquatBuilderData *bb) in opstack_top()
192 static struct opstack *opstack_push(SquatBuilderData *bb, int op) in opstack_push()
194 struct opstack *top; in opstack_push()
223 struct opstack *child; in opstack_pop()
224 struct opstack *parent; in opstack_pop()
302 struct opstack *parent = opstack_top(bb); in match()
303 struct opstack *top; in match()
[all …]

123456